I write a form in Google App Engine using Python that user can input data to form. After input, I want this data to be send to one’s email. for example : example@gmail.com.
My question is : in Python, does it have simple function (and I can use this function on Google App Engine) to send email ?
Thanks 🙂
Python does have a mail package for transmitting emails.
Included below is an example as found in the Python docs
In addition, the app engine has a mail API as well.