﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
32633	send_mail must make `from_email` argument optional	Aryan Iyappan	nobody	"the django docs state that, while sending mail, if no from_email is passed, it will use the `DEFAULT_FROM_EMAIL`.
source: https://docs.djangoproject.com/en/3.1/topics/email/
> **from_email**: A string. If None, Django will use the value of the DEFAULT_FROM_EMAIL setting.

However, when using the send_mail function, the `from_email` argument is not optional.
A workaround for this right now is this.


{{{
        send_mail(
            subject=subject,
            message=message,
            recipient_list=[self.user.email],
            from_email=None
         )
}}}

giving a default value of `None` to it will resolve this issue.
"	Cleanup/optimization	closed	Core (Mail)	3.2	Normal	worksforme			Unreviewed	1	0	0	0	0	0
