I'm trying to make an app that sends an email using MFMailComposeViewController
but that class doesn't seem to provide a way to set email headers.
I tried to look for a lower level solution (or even a library) that does this but couldn't find one. How can I set/get email headers in an Objective-C app?
[EDIT] To be clear, I am looking for a way to set email headers by ways other than provided by MFMailComposeViewController. I already know how to send a simple email. I am looking for a way to set email headers such as In-Reply-To, or Message-ID
mailto:
supports the limited set thatMFMailComposeViewController
supports). – ImpaleMFMailComposeViewController
. – Dorcas