I'm looking for a way to create a HTML formatted email from a OS X Cocoa application.
My preferred workflow would be: The user selects a menu item and the default mail application opens with a pre-filled new email in the foreground.
I'm able to do this with mailto and -[NSWorkspace openURL] for plain text emails, but this doesn't work for HTML emails.
Best Solution
I was interested in this too, so two days of reverse engineering Safaris 'Mail Contents of This Page' feature and I got it working.
UPDATE: I improved the code and put it on GitHub
This code doesn't check if Mail is running, so it's only working when Mail is already started.
The pro side of this approach that it works with all email clients which implement MailLinkSupported and MailPageSupported. See QA1722.
The downside is that you can't set recipients like with a
mailto
. For this the Scripting Bridge seems the only solution. See this modified SBSendEmail sample.