如何从Mac应用程序发送邮件

时间:2012-08-31 05:02:27

标签: cocoa email

我是开发Mac应用程序的新手,在我的应用程序中,我需要像iPhone一样打开邮件组合,但我无法找到我必须使用的框架。

任何人都知道这个,如何打开邮件撰写窗口。

此致

1 个答案:

答案 0 :(得分:1)

解决此问题的一种方法是使用NSAppleScript类。如果你至少对AppleScript不太熟悉,那就不应该太难了。

    NSAppleScript *mailScript;
    NSString *scriptString= [NSString stringWithFormat:@"tell application \"Mail\"\nmake new outgoing message with properties {visible:true, subject:\"%@\", content:\"%@\"}\nactivate\nend tell",subject,body];
    mailScript = [[NSAppleScript alloc] initWithSource:scriptString];
    [mailScript executeAndReturnError:nil];