Re: Sending mail
Re: Sending mail
- Subject: Re: Sending mail
- From: Alastair Houghton <email@hidden>
- Date: Fri, 31 Mar 2006 12:48:36 +0100
On 23 Mar 2006, at 16:15, Johan Augustsson wrote:
Hi!
Mail is set up correctly on my OS 10.3 and 10.4 computers. All
computers use Entourage. Only my OS 10.4 computers works. I can
send mails from Mail.app without problems.
Anyone have any idea why NSMailDelivery doesn't work on my 10.3
computer? Or perhaps knows of a better free and updated framework?
We released the source for our mail framework here:
http://www.coriolis-systems.com/opensource/
It has built-in support for Mail.app, and has a plug-in interface to
allow support for other clients as well. We have plug-ins for
Entourage and Eudora. We'd quite like a Thunderbird plug-in, but the
Mozilla documentation is labyrinthine and doesn't seem to cover
writing Thunderbird extensions in any great detail.
It lets you send attachments and can cope with formatting (though it
might strip it depending on the mail client it's talking to). Usage
is pretty straighforward; once you've got the CSMailClient object you
want to use, you just do
[client deliverMessage:messageBodyAsAttributedString
headers:[NSDictionary dictionaryWithObjectsAndKeys:
@"email@hidden", @"To",
@"email@hidden", @"From",
@"This is a test", @"Subject",
nil]];
i.e. the interface is like NSMailDelivery.
Kind regards,
Alastair.
--
http://www.alastairs-place.net
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden