Skip to content
Snippets Groups Projects
Commit 36273fc0 authored by Rafael László's avatar Rafael László :speech_balloon:
Browse files

fix string memes

parent 3797c7da
No related branches found
No related tags found
1 merge request!10better email memes
......@@ -25,8 +25,8 @@ def send_out_mail(subject, message, SENDER_EMAIL, receiver_email):
email = EmailMessage(
subject = subject,
body = message,
from_email = 'SENDER_EMAIL',
to = ['receiver_email'],
from_email = SENDER_EMAIL,
to = [receiver_email, ],
reply_to = [SENDER_EMAIL],
)
email.send()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment