使用 html mailto 将变量或多个变量值发送到电子邮件正文中
Using html mailto to send variable or multiple variable values into the body of the email
我正在尝试使用 mailto,以便使用以下代码将变量值放入电子邮件正文中:
<p>
This is another mailto link:
<a href="mailto:someone@example.com?cc=someoneelse@example.com&bcc=andsomeoneelse@example.com&subject=Summer%20Party&body=You%20are%20invited%20to%20a%20big%20summer%20party!" target="_top">Send mail!</a>
</p>
然后我希望最终用户能够轻松地将这些值复制并粘贴到 excel
这是我找到的解决方案。它使用 JavaScript :
<a href="#" onclick="javascript:window.location='mailto:'+EmailVairable+'?subject='+SubjectVariable+'&cc='+CCvariable+'&bcc='+BCCvariable+'&body='+BodyVariable">Email</a>
我正在尝试使用 mailto,以便使用以下代码将变量值放入电子邮件正文中:
<p>
This is another mailto link:
<a href="mailto:someone@example.com?cc=someoneelse@example.com&bcc=andsomeoneelse@example.com&subject=Summer%20Party&body=You%20are%20invited%20to%20a%20big%20summer%20party!" target="_top">Send mail!</a>
</p>
然后我希望最终用户能够轻松地将这些值复制并粘贴到 excel
这是我找到的解决方案。它使用 JavaScript :
<a href="#" onclick="javascript:window.location='mailto:'+EmailVairable+'?subject='+SubjectVariable+'&cc='+CCvariable+'&bcc='+BCCvariable+'&body='+BodyVariable">Email</a>