Reputation: 254
I am creating an ios application,in which I have to more than 1000 mails from the device.I am using the MFMailComposeViewController. My doubt is Is there any limit for the recipient number? Is that possible to send more than 1000 mail from the device? Or whether we have to send it from the server?
If anybody has idea,then please give me a solution Thanks in advance
Upvotes: 0
Views: 187
Reputation: 66
In the documentation there´s no limit defined for the number of recipients.
You just give an Array of NSString objects to
- (void)setToRecipients:(NSArray*)toRecipients
But maybe your server should handle this mass-email procedure. Maybe the devices don´t carry the systemressources this needs with them.
Upvotes: 1