Skip to content
forked from troyz/MailUtil

Sending mails with `skpsmtpmessage` in serial order.

License

Notifications You must be signed in to change notification settings

recroots/MailUtil

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MailUtil

[![CI Status](http://img.shields.io/travis/Troy Zhang/MailUtil.svg?style=flat)](https://travis-ci.org/Troy Zhang/MailUtil) Version License Platform

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:@"java-koma@163.com" withLogin:@"java-koma@163.com" withPassword:@"**********"];

// the attachment file path
NSString *path = [[NSBundle mainBundle] pathForResource:@"ticket@2x.png" ofType:nil];

// a message that will be sent
SendEmailOperation *operation = [[SendEmailOperation alloc] initWithTo:@"java-koma@163.com" subject:@"Hello" body:@"World" path:path];

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

Author

Troy Zhang, java.koma@gmail.com

License

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

About

Sending mails with `skpsmtpmessage` in serial order.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Objective-C 93.8%
  • Ruby 2.6%
  • C 1.9%
  • HTML 1.7%