通过单击按钮在邮件应用程序中撰写新消息
我正在开发 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 NSWorkspace 的 -openURL: 方法,您可以打开一个标准的 mailto: 链接,其中可以包含主题和正文,它将启动带有预填充字段的用户的默认电子邮件应用程序(通常是 Mail)。
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.