3

我正在寻找在我的 mac 应用程序中编写一个按钮来打开默认的电子邮件客户端并撰写一封带有预编程地址和主题的新电子邮件。

我正在寻找的理想功能与 mailto 的行为相同:当您在 safari 中单击电子邮件地址时的功能。

如果有人能指出一些可能有效的代码的方向,或者为我提供一个示例,我将不胜感激。

非常感谢。

4

1 回答 1

4

您可以创建一个 URL 并打开它:

- (IBAction)sendMailCocoa:(id)sender
    // Create a mail message in the user's preferred mail client 
    // by opening a mailto URL. The extended mailto URL format 
    // is documented by RFC 2368 and is supported by Mail.app 
    // and other modern mail clients.
    //
    // This routine's prototype makes it easy to connect it as 
    // the action of a user interface object in Interface Builder.
{
    NSURL *     url;

    // Create the URL.

    url = [NSURL URLWithString:@"mailto:dts@apple.com"
        "?subject=Hello%20Cruel%20World!"
        "&body=Share%20and%20Enjoy"
    ];
    assert(url != nil);

    // Open the URL.

    (void) [[NSWorkspace sharedWorkspace] openURL:url];
}

Apple 在此技术说明中有更多解释。

于 2012-07-26T18:36:07.703 回答