MailUtil 0.1.2

MailUtil 0.1.2

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Sep 2016

Maintained by Troy Zhang.



MailUtil 0.1.2

  • By
  • Troy Zhang

Introduction

As you known, skpsmtpmessage could not send email in concurrent order. MailUtil is a tool that wrap skpsmtpmessage to send emails in serial order. Thanks for the article Sending Mails in Serial Order using GCD.

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

iOS7+

Installation

MailUtil is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "MailUtil", :git => 'https://github.com/troyz/MailUtil.git', :tag => '0.1.0'

Useage

// please correct it.
[SendEmailOperation setupConfigWithServer:@"smtp.163.com" withFrom:@"[email protected]" withLogin:@"[email protected]" withPassword:@"**********"];

// the attachment file path
NSString *path = [[NSBundle mainBundle] pathForResource:@"[email protected]" ofType:nil];

// a message that will be sent
SendEmailOperation *operation = [[SendEmailOperation alloc] initWithTo:@"[email protected]" subject:@"Hello" body:@"World" path:path];

// send the message
[SendEmailOperation sendEmail:operation];

Author

Troy Zhang, [email protected]

License

MailUtil is available under the MIT license. See the LICENSE file for more info.