/ Published in: Objective C
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#import "MyHandler.h" @implementation MyHandler - (id)renderWithTransport:(BxTransport *)transport { NSString *htmlMessage = @"<html><body>This is an <em>HTML</em> message.<br /> — <a href='http://www.bombaxtic.com'>www.bombaxtic.com</a></body></html>"; [[BxMailer systemMailer] sendMessage:htmlMessage subject:@"Html Message" forKey:@"Content-Type"]]; return self; } @end