Sending Email’s In Django -Free Django Tutorials
Django is one of the framework that comes with a ready and easy-to-use light engine for sending and receiving email’s.Although in python,to send or receive email you just need to import smtplib ,in django for email functionality user just have to import django.core.mail. Quick Example: from django.core.mail import send_mail send_mail( ‘Subject here’, ‘Here is the …
Sending Email’s In Django -Free Django Tutorials Read More »