objectiveccoder001
objectiveccoder001

Reputation: 3031

Sending and receiving mail - objective-c

Is there a framework that does such a thing. It's really important that it can check mail and get it's contents. For example:

If(newMessage hasSubjectEqualTo:@"woodviolins") { }

And

If(contents of new message has "hey" in it) {}

Upvotes: 1

Views: 632

Answers (2)

benno
benno

Reputation: 1

There's also c-client!

"Sending mail on Snow Leopard using the c-client API",

http://blog.loudhush.ro/2009/10/sending-mail-on-snow-leopard-using-c.html

Upvotes: 0

Chuck
Chuck

Reputation: 237060

There are a number of frameworks in this general area. Google "Cocoa mail framework" and you'll come up with a bunch of hits. For one example: Pantomime

Upvotes: 3

Related Questions