Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将图像附加到邮件并在邮件客户端中打开该邮件,但我不知道该怎么做。我知道如何使用代码打开邮件客户端
<a href="mailto:" target="_top"> Send Mail</a>
但是当我单击图像并将该图像作为附件发送时,我该怎么做?????
没有办法做你想做的事。mailto:除非通过链接,否则您无法打开邮件客户端。当你这样做时,你只能设置“to”和“cc”地址、主题和正文,而正文只能是文本。这一切都必须适合 URL。
mailto:
请参阅mailto和rfc6068。
不确定我是否完全理解你想要做什么。您是说通过其他类型的过程您正在发送一封电子邮件,其中包含嵌入在电子邮件本身中的图像......所以您有:
<a href="mailto:" target="_top">Send Mail</a> <a href="mailto:" target="_top"><img src="myimage.jpg"></a>
我确定这可能不是您要找的,但请告诉我。