Sample code for 30+ languages & platforms
Objective-C

Send an Email via SMTP

See more SMTP Examples

Demonstrates the Chilkat MailMan.SendEmail method, which sends a single Email object through the configured SMTP server. This example configures the SMTP connection, builds a message, and sends it.

Background: SMTP (Simple Mail Transfer Protocol) is the protocol for sending mail. The typical flow is: connect to the server, authenticate, then hand over the message with MAIL FROM, RCPT TO, and DATA. SendEmail wraps all of that: you build an Email with subject, recipients, and body, and Chilkat renders it to MIME and delivers it. Modern submission commonly uses implicit TLS on port 465 (SmtpSsl = true).

Chilkat Objective-C Downloads

Objective-C
#import <CkoMailMan.h>
#import <CkoEmail.h>

BOOL success = NO;

//  Demonstrates the MailMan.SendEmail method, which sends a single Email object through the
//  configured SMTP server.

CkoMailMan *mailman = [[CkoMailMan alloc] init];

//  Configure the SMTP server connection.
mailman.SmtpHost = @"smtp.example.com";
mailman.SmtpPort = [NSNumber numberWithInt:465];
mailman.SmtpSsl = YES;
mailman.SmtpUsername = @"user@example.com";
mailman.SmtpPassword = @"myPassword";

//  Build the email to send.
CkoEmail *email = [[CkoEmail alloc] init];
email.Subject = @"Test email from Chilkat";
email.From = @"alice@example.com";
[email AddTo: @"Bob" emailAddress: @"bob@example.com"];
email.Body = @"Hello, this is a test message.";

//  Send the email.

success = [mailman SendEmail: email];
if (success == NO) {
    NSLog(@"%@",mailman.LastErrorText);
    return;
}

NSLog(@"%@",@"Email sent.");

//  Note: Explicitly connecting/authenticating is optional.  Chilkat MailMan automatically
//  connects and authenticates -- using the property settings above -- whenever a server
//  operation requires it.  Calling the explicit connect/authenticate methods can still be
//  helpful to determine whether a failure occurs while connecting or while authenticating.