from django.test import TestCase

# Create your tests here.
from django.core.mail import send_mail

send_mail(
    'Test Subject',
    'This is a test email from Django.',
    'your-email@gmail.com',
    ['you@example.com'],
    fail_silently=False,
)
