sending image in a faceless email
Posted
by anurag
on Stack Overflow
See other posts from Stack Overflow
or by anurag
Published on 2010-06-01T11:58:46Z
Indexed on
2010/06/01
12:03 UTC
Read the original article
Hit count: 175
I am trying to send a faceless(without showing the interface)email by using the code below: I also want to attach an image to this email can anybody suggest is it possible???
(void) sendEmailTo:(NSString *)toStr withSubject:(NSString *)subjectStr withBody:(NSString *)bodyStr { NSString *emailString=[[NSString alloc] initWithFormat:@"mailto:?to=%@&subject=%@&body=%@", [toStr stringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding], [subjectStr stringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding], [bodyStr stringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding]];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:emailString]];
[emailString release]; }
© Stack Overflow or respective owner