i am New in Django. i want to send html via Email using django. i am using following Code
send_mail(
'Email Title',
'My Message',
'webmaster@localhost',
[to mail],
fail_silently=False,
)
This Code is Sending simple strings,not sending HTML. for example if i pass <h1>test</h1>
in my message body then it will return same. i want to apply <h1>
tag in 'test'. How to do that ?