1

链接中的标签mailto:会打开默认的电子邮件客户端。但是,我想为使用 GMail 编写代码的许多人。

那么,有没有办法制作电子邮件并访问用户的 gmail 选项卡,以便她/他所要做的就是单击发送?

4

4 回答 4

4

恐怕没有这种方法。这不是您应该尝试在 Web 应用程序中解决的问题,因为用户代理的行为可能不同。所以就这样吧。

于 2013-08-06T14:45:49.997 回答
2

像这样使用锚:

<a href="https://mail.google.com/mail/?view=cm&fs=1&to=someone@gmail.com&su=subject_here&body=body_here"></a>
于 2013-08-06T14:50:25.400 回答
2

“制作电子邮件并访问用户的 gmail 选项卡” =不道德的XSS 。
实现您想要的一种方法是要求您的用户让他们的 Gmail 处理 mailto:按照本指南链接 -> https://support.google.com/mail/answer/10966?hl=en

于 2013-08-06T14:50:58.907 回答
1

No such way to set it from inside your applications. But gmail does provide you setting to open mailto links in gmail.

于 2013-08-06T14:47:22.947 回答