email_user(subject, message, from_email=None, **kwargs)
Sends an email to the user. If from_email
is None
, Django uses the DEFAULT_FROM_EMAIL
. Any **kwargs
are passed to the underlying send_mail()
call.
email_user(subject, message, from_email=None, **kwargs)
Sends an email to the user. If from_email
is None
, Django uses the DEFAULT_FROM_EMAIL
. Any **kwargs
are passed to the underlying send_mail()
call.
Please login to continue.