我mailto
在HTML文档中有几个链接。
<a href="mailto:etc...">
我可以在mailto:
部分插入HTML格式的正文href
吗?
<a href="mailto:me@me.com?subject=Me&body=<b>ME</b>">Mail me</a>
请注意,在iOS中(2016),添加<i>
和<b>
标记以简单的斜体,粗体格式是完全可以的。
我mailto
在HTML文档中有几个链接。
<a href="mailto:etc...">
我可以在mailto:
部分插入HTML格式的正文href
吗?
<a href="mailto:me@me.com?subject=Me&body=<b>ME</b>">Mail me</a>
请注意,在iOS中(2016),添加<i>
和<b>
标记以简单的斜体,粗体格式是完全可以的。
Answers:
如您在RFC 6068中所看到的,这是完全不可能的:
特殊的
<hfname>
“正文”表示关联的<hfvalue>
是消息的正文。“正文”字段值旨在包含消息的第一个文本/纯文本正文部分的内容。“正文”伪头字段主要用于生成用于自动处理的短消息(例如,用于邮件列表的“订阅”消息),而不是用于一般的MIME正文。
尽管无法使用HTML格式化电子邮件正文,但可以按照先前的建议添加换行符。
如果您能够使用javascript,则“ encodeURIComponent()”可能会像下面这样使用...
var formattedBody = "FirstLine \n Second Line \n Third Line";
var mailToLink = "mailto:x@y.com?body=" + encodeURIComponent(formattedBody);
window.location.href = mailToLink;
raw("text \n more text \n\n\t")
函数封装文本并将其转换为电子邮件正文的换行符和制表符
\n
。
我已经使用了它,它似乎可以与Outlook一起使用,而不是使用html,但是至少可以在将正文添加为输出时使用换行符设置文本的格式。
<a href="mailto:email@address.com?subject=Hello world&body=Line one%0DLine two">Email me</a>
这不是您想要的,但是可以使用现代javascript在客户端上创建EML文件并将其流传输到用户的文件系统,该文件系统应在其邮件程序中打开包含HTML的丰富电子邮件,例如Outlook:
https://stackoverflow.com/a/27971771/8595398
这是包含图像和表格的电子邮件的jsfiddle:https ://jsfiddle.net/seanodotcom/yd1n8Lfh/
的HTML
<!-- https://jsfiddle.net/seanodotcom/yd1n8Lfh -->
<textarea id="textbox" style="width: 300px; height: 600px;">
To: User <user@domain.demo>
Subject: Subject
X-Unsent: 1
Content-Type: text/html
<html>
<head>
<style>
body, html, table {
font-family: Calibri, Arial, sans-serif;
}
.pastdue { color: crimson; }
table {
border: 1px solid silver;
padding: 6px;
}
thead {
text-align: center;
font-size: 1.2em;
color: navy;
background-color: silver;
font-weight: bold;
}
tbody td {
text-align: center;
}
</style>
</head>
<body>
<table width=100%>
<tr>
<td><img src="http://www.laurell.com/images/logo/laurell_logo_storefront.jpg" width="200" height="57" alt=""></td>
<td align="right"><h1><span class="pastdue">PAST DUE</span> INVOICE</h1></td>
</tr>
</table>
<table width=100%>
<thead>
<th>Invoice #</th>
<th>Days Overdue</th>
<th>Amount Owed</th>
</thead>
<tbody>
<tr>
<td>OU812</td>
<td>9</td>
<td>$4395.00</td>
</tr>
<tr>
<td>OU812</td>
<td>9</td>
<td>$4395.00</td>
</tr>
<tr>
<td>OU812</td>
<td>9</td>
<td>$4395.00</td>
</tr>
</tbody>
</table>
</body>
</html>
</textarea> <br>
<button id="create">Create file</button><br><br>
<a download="message.eml" id="downloadlink" style="display: none">Download</a>
Java脚本
(function () {
var textFile = null,
makeTextFile = function (text) {
var data = new Blob([text], {type: 'text/plain'});
if (textFile !== null) {
window.URL.revokeObjectURL(textFile);
}
textFile = window.URL.createObjectURL(data);
return textFile;
};
var create = document.getElementById('create'),
textbox = document.getElementById('textbox');
create.addEventListener('click', function () {
var link = document.getElementById('downloadlink');
link.href = makeTextFile(textbox.value);
link.style.display = 'block';
}, false);
})();
有些事情是可能的,但不是全部,例如说您要换行,而不是使用<br />
use%0D%0A
例:
<a href="mailto:?subject=&body=Hello,%0D%0A%0D%0AHere is the link to the PDF Brochure.%0D%0A%0D%0ATo view the brochure please click the following link: http://www.uyslist.com/yachts/brochure.pdf"><img src="images/email.png" alt="EMail PDF Brochure" /></a>
值得指出的是,至少在iPhone的Safari上,插入基本的HTML标签,例如 <b>
,<i>
和<img>
(在理想情况下,你不应该在其他情况下使用了,无论如何,宁愿CSS)插入身体参数mailto:
确实出现了工作-他们在电子邮件客户端中很荣幸。我尚未进行详尽的测试,以查看其他移动或桌面浏览器/电子邮件客户端组合是否支持此功能。这是否真的符合标准也值得怀疑。但是,如果要为该平台构建,可能会很有用。
正如其他响应所指出的那样,在将其嵌入mailto:
链接之前,还应该在整个主体上使用encodeURIComponent 。
任何人都可以尝试以下操作(mailto函数仅接受纯文本,但在这里我展示了如何使用HTML内部文本属性以及如何将锚点添加为mailto正文参数):
//Create as many html elements you need.
const titleElement = document.createElement("DIV");
titleElement.innerHTML = this.shareInformation.title; // Just some string
//Here I create an <a> so I can use href property
const titleLinkElement = document.createElement("a");
titleLinkElement.href = this.shareInformation.link; // This is a url
...
let mail = document.createElement("a");
// Using es6 template literals add the html innerText property and anchor element created to mailto body parameter
mail.href =
`mailto:?subject=${titleElement.innerText}&body=${titleLinkElement}%0D%0A${abstractElement.innerText}`;
mail.click();
// Notice how I use ${titleLinkElement} that is an anchor element, so mailto uses its href and renders the url I needed
我是这样工作的:
var newLine = escape("\n");
var body = "Hello" + newLine +"World";
输出为:
Hello
World