-3

I am trying to make an application that takes a photo and send it to the email you have registered with. I want the photo to be sent directly to the email without any user interaction. Is this possible? Can I use the parse database to do this?

Aurel
  • 27
  • 8
  • I am not sure from parse but you can write your own backend implementation and make a http post request to your server. eg. test.com/info.php?param=data. – Jared Burrows Mar 27 '15 at 21:38
  • @JaredBurrows Can you provide a link with a tutorial or an example using that – Aurel Mar 27 '15 at 21:43
  • http://www.jondev.net/articles/Sending_Emails_without_User_Intervention_%28no_Intents%29_in_Android – Yanshof Mar 27 '15 at 21:45

1 Answers1

0

There are several possible solutions. Look here for some inspiration on how to do it using the JavaMail API. You could also use a 3rd party services like Mandrill.

Community
  • 1
  • 1