Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
456 views
in Technique[技术] by (71.8m points)

send email through a cocoa application

Is there any way I can send an email, like any frameworks or something. I've tried some (pantomime, mailcore) but I can't get them to work. So if you know of any frameworks/other methods, or if you know of a good open source example using either pantomime or mailcore I would greatly appreciate it

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Growl's MailMe display does this. We used to use the Message framework, but its public API went away in the 64-bit transition, so we had to find something else to make it 64-bit clean.

For awhile (prior to starting the beta cycle), we were using Scripting Bridge to tell Mail to send the message. This worked, according to the patch author, but it's a very strong dependency on Mail, and I'm sure our users who don't use Mail wouldn't like it.

I looked at Pantomime, EDMessage, and SKPSMTPMessage. Every single one either was way too complex for our needs (i.e., it was a framework for implementing a complete mail client), didn't work on Mac OS X, or both.

What I ended up doing was writing a Python script to send the message using Python's smtplib module. Here's the script, under a BSD license. We use NSTask to run the python interpreter and give the script to it, and NSPipe to give the password and message body to the script. You can run the script from the command line with the --help option to see how to run it.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...