Skip to content

Instantly share code, notes, and snippets.

View core-code's full-sized avatar

CoreCode core-code

View GitHub Profile
@glennposadas
glennposadas / sendmailcore2objc.m
Last active March 4, 2021 00:10
Sample full code of sending an email using MailCore2 in Objective-C
- (IBAction)sendEmail:(id)sender {
MCOMessageBuilder *builder = [[MCOMessageBuilder alloc] init];
MCOAddress *address = [MCOAddress addressWithDisplayName:@"Uplant Support" mailbox:@"noreply.uplant@gmail.com"];
NSArray *to = [NSArray arrayWithObject:[MCOAddress addressWithDisplayName:@"Glenn Posadas" mailbox:@"admin@glennvon.com"]];
[[builder header] setFrom:address];
[[builder header] setTo:to];
[[builder header] setSubject:@"This is a nice subject"];
[builder setHTMLBody:@"The motherloving body."];