Send Email - Cocoa

cocoa, email, macos

Solution

Apple's Developer Connection has a sample project called SBSendEmail which demonstrates how to use a Scripting Bridge to send email via scripting to the Mail app.

You can download the whole project and run it in XCode to see how it works. Of particular interest to you will be the sendEmailMessage: method in Controller.m

Problem

How would I be able to send emails using Cocoa? Which framework would I use, and how would I use it.

Original source