通过单击按钮在邮件应用程序中撰写新消息

发布于 2024-12-02 02:13:06 字数 175 浏览 1 评论 0原文

我正在开发 Mac 应用程序,我希望用户能够通过电子邮件与我联系。所以我想会有一个按钮显示联系人或其他内容,当用户单击该按钮时,它将打开邮件应用程序并撰写一条新消息,该消息将发送到我已添加的电子邮件地址。

有点像应用程序内的邮件功能,您可以将其添加到 iPhone 和 iPad 应用程序上。

这可能吗?

I'm working on a Mac app and I want the user to be able to contact me via email. So I was thinking that there was going to be a button that says contact or something and when the user click on the button it will open the mail app and compose a new message that will be sent to my email address already added.

So kinda like an in app mail function that you can add on the iPhone and iPad apps.

Is this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

樱花坊 2024-12-09 02:13:06

使用 NSWorkspace 的 -openURL: 方法,您可以打开一个标准的 mailto: 链接,其中可以包含主题和正文,它将启动带有预填充字段的用户的默认电子邮件应用程序(通常是 Mail)。

mailto:[email protected]?subject=hello&body=text

Using NSWorkspace's -openURL: method you can open a standard mailto: link which can include subject and body and it will launch user's default e-mail app (usually Mail) with pre-populated fields.

mailto:[email protected]?subject=hello&body=text
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文