We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea1d09b commit daaacc3Copy full SHA for daaacc3
templated_mail/mail.py
@@ -71,7 +71,7 @@ def send(self, to, *args, **kwargs):
71
self.cc = kwargs.pop('cc', [])
72
self.bcc = kwargs.pop('bcc', [])
73
self.reply_to = kwargs.pop('reply_to', [])
74
- self.from_email = kwargs.pop('from_email', '')
+ self.from_email = kwargs.pop('from_email', None)
75
76
super(BaseEmailMessage, self).send(*args, **kwargs)
77
0 commit comments