Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Possible to send automated email?

Tags:

ios

The iOS SDK class MFMailComposeViewController can be used to let the user compose an email message.

What I'd like to do, is for the iOS app to send an email in the background, with no user interaction. Is this at all possible/allowed in the iOS SDK?

like image 590
byneri Avatar asked Oct 03 '11 03:10

byneri


People also ask

Can I automate an email in Gmail?

On your computer, go to Gmail . At the top left, click Compose. Create your email. Click Schedule send.

Can I automate an email in Outlook?

Sending automatic emails in Outlook is a very convenient way to send emails. You can set up the automation to send the same email over and over again for a specific time period. The first step to setting up an automation is creating a new email message in Outlook.


1 Answers

Nope. There isn't any API available to do this. You'd need to roll your own SMTP client and have the user enter credentials into your application. On top of that Apple may not approve this.

like image 115
Joshua Weinberg Avatar answered Oct 10 '22 22:10

Joshua Weinberg