-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsend_lesson_command.py
More file actions
54 lines (44 loc) · 1.75 KB
/
Copy pathsend_lesson_command.py
File metadata and controls
54 lines (44 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from django_email_learning.services.command_models.abstract_command import (
AbstractCommand,
)
from django_email_learning.models import Lesson, CourseContent
from django_email_learning.services.email_sender_service import EmailSenderService
from django.core.mail import EmailMultiAlternatives
from django.template.loader import render_to_string
from typing import Literal
class LessonNotFoundError(Exception):
pass
class SendLessonCommand(AbstractCommand):
command_name: Literal["send_lesson"] = "send_lesson"
content_id: int
email: str
def execute(self) -> None:
content = CourseContent.objects.get(id=self.content_id)
if not content.lesson:
raise LessonNotFoundError(
f"CourseContent with ID {self.content_id} has no associated lesson"
)
self.logger.info(
f"Sending lesson with ID {content.lesson.id} to email {self.email}"
)
try:
lesson = Lesson.objects.get(id=content.lesson.id)
except Lesson.DoesNotExist:
raise LessonNotFoundError(f"Lesson with ID {content.lesson.id} not found")
subject = lesson.title
context = {
"lesson": lesson,
"unsubscribe_link": content.course.generate_unsubscribe_link(self.email),
}
payload = render_to_string("emails/lesson.txt", context)
email_service = EmailSenderService()
email_message = EmailMultiAlternatives(
subject=subject,
body=payload,
from_email=email_service.from_email,
to=[self.email],
)
email_message.attach_alternative(
render_to_string("emails/lesson.html", context), "text/html"
)
email_service.send(email_message)