Forked from MonsieurDart/MFMailComposeViewController+URLRequest.h
Created
February 25, 2012 22:39
-
-
Save jonchui/1911220 to your computer and use it in GitHub Desktop.
Intercept mailto URLs in a UIWebView and send them to a MFMailComposeViewController
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <Foundation/Foundation.h> | |
#import <MessageUI/MessageUI.h> | |
@interface NSURL (MailComposeViewController) | |
// Is the given request a mailto URL. | |
- (BOOL)isMailtoRequest; | |
@end | |
@interface MFMailComposeViewController (URLRequest) | |
// Parse the request URL and display an email mail composition interface, filled with | |
// the elements resulting of this parsing. | |
// Return NO if the device doesn't provide an email sending service. | |
+ (BOOL)presentModalComposeViewControllerWithURL:(NSURL *)aURL | |
delegate:(id<MFMailComposeViewControllerDelegate>)delegate; | |
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "MFMailComposeViewController+URLRequest.h" | |
@implementation NSURL (MailComposeViewController) | |
// Is the given request a mailto URL. | |
- (BOOL)isMailtoRequest { | |
return [[self scheme] isEqualToString:@"mailto"]; | |
} | |
@end | |
@implementation MFMailComposeViewController (URLRequest) | |
// Parse the request URL and display an email mail composition interface, filled with | |
// the elements resulting of this parsing. | |
// Return NO if the device doesn't provide an email sending service or if the URL is not valid. | |
+ (BOOL)presentModalComposeViewControllerWithURL:(NSURL *)aUrl | |
delegate:(UIViewController<MFMailComposeViewControllerDelegate> *)aDelegate { | |
if ([MFMailComposeViewController canSendMail]) { | |
MFMailComposeViewController *mailViewController = [[MFMailComposeViewController alloc] init]; | |
mailViewController.mailComposeDelegate = aDelegate; | |
NSArray *rawURLparts = [[aUrl resourceSpecifier] componentsSeparatedByString:@"?"]; | |
if (rawURLparts.count > 2) { | |
return NO; // invalid URL | |
} | |
NSMutableArray *toRecipients = [NSMutableArray array]; | |
NSString *defaultRecipient = [rawURLparts objectAtIndex:0]; | |
if (defaultRecipient.length) { | |
[toRecipients addObject:defaultRecipient]; | |
} | |
if (rawURLparts.count == 2) { | |
NSString *queryString = [rawURLparts objectAtIndex:1]; | |
NSArray *params = [queryString componentsSeparatedByString:@"&"]; | |
for (NSString *param in params) { | |
NSArray *keyValue = [param componentsSeparatedByString:@"="]; | |
if (keyValue.count != 2) { | |
continue; | |
} | |
NSString *key = [[keyValue objectAtIndex:0] lowercaseString]; | |
NSString *value = [keyValue objectAtIndex:1]; | |
value = (NSString *)CFURLCreateStringByReplacingPercentEscapesUsingEncoding(kCFAllocatorDefault, | |
(CFStringRef)value, | |
CFSTR(""), | |
kCFStringEncodingUTF8); | |
[value autorelease]; | |
if ([key isEqualToString:@"subject"]) { | |
[mailViewController setSubject:value]; | |
} | |
if ([key isEqualToString:@"body"]) { | |
[mailViewController setMessageBody:value isHTML:NO]; | |
} | |
if ([key isEqualToString:@"to"]) { | |
[toRecipients addObjectsFromArray:[value componentsSeparatedByString:@","]]; | |
} | |
if ([key isEqualToString:@"cc"]) { | |
NSArray *recipients = [value componentsSeparatedByString:@","]; | |
[mailViewController setCcRecipients:recipients]; | |
} | |
if ([key isEqualToString:@"bcc"]) { | |
NSArray *recipients = [value componentsSeparatedByString:@","]; | |
[mailViewController setBccRecipients:recipients]; | |
} | |
} | |
} | |
[mailViewController setToRecipients:toRecipients]; | |
[aDelegate presentModalViewController:mailViewController animated:YES]; | |
[mailViewController release]; | |
return YES; | |
} | |
else { | |
return NO; | |
} | |
} | |
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The user just has to implement this delegate method. | |
// Mail sent, dismiss the email sender. | |
- (void)mailComposeController:(MFMailComposeViewController*)controller | |
didFinishWithResult:(MFMailComposeResult)result | |
error:(NSError*)error { | |
[controller dismissModalViewControllerAnimated:YES]; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment