I have developed an app where the user can enter an email address in the settings and on some specific event an email is sent to this address (as a notification).
The problem is: what is the best way to send an email from an app?
The best way would be to send an email from the google account of the app user but that isn't possible, right?
What I'm doing now is to do a HTTP post and send an email through php. This works great but since the app is used by many people the mail sending always gets disabled due to mass mail sending... What can I do?
Do I really need to host my own server?
Thanks for your answers.