gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 17:56:42 27 4
gpt4 key购买 nike

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

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

问候

最佳答案

解决此问题的一种方法是使用 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];

关于cocoa - 如何从 Mac 应用程序发送邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12209165/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com