Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My app need to know all the accounts set up in Mail.app, then ask the user to select one for a specific use. How can I achieve this?

share|improve this question

1 Answer

up vote 2 down vote accepted

AppleScript is probably the way to go (check NSAppleScript):
http://www.mactech.com/articles/mactech/Vol.21/21.09/ScriptingMail/index.html

Sample:

NSAppleScript* script= [[NSAppleScript alloc] initWithSource:@"tell application \"Mail\" \nname of every account \nend tell"];
NSDictionary* scriptError = nil;
NSAppleEventDescriptor* descriptor=[script executeAndReturnError:&scriptError];
if(scriptError)
{
    NSLog(@"Error: %@",scriptError);
    return;
}
NSLog(@"Result: %@",descriptor);
share|improve this answer
Thx so much ,but how do i comunicate with AppleScript ? how can i get the result? I am not so familar with AppleScript.. – NeXT5tep Mar 20 '11 at 13:40
Example has been added, this returns my mail-accounts properly. – Anne Mar 20 '11 at 13:52
Though i fix it myself,thx very much for your help. – NeXT5tep Mar 20 '11 at 14:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.