Last active
June 21, 2020 16:07
-
-
Save bismitaguha/4aa2f777995da1a00f868afe6c0d93ea to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
import statements | |
""" | |
class RandomView(views.APIView): | |
# other functions | |
def function(self, request, *args, **kwargs): | |
""" | |
Write the necessary code for the function | |
""" | |
# send email | |
send_mail( | |
'Email Subject', | |
'This is the message body.', | |
'from_email@email.com', | |
'to_email@email.com, | |
fail_silently=False, | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment