0

在这里,我需要发送一封带有mailto(html)ormail_to(rails)功能的邮件。但问题在于邮件正文,如何使用 mailto 功能附加正文,我的意思是,当我单击此 邮件链接时,会打开一个 Gmail 客户端,所以我需要在客户端正文部分获取imageURL

<script type="text/javascript">
var **imageURL**;
function code (email) {

   imageURL = "https://chart.googleapis.com/chart?
   chs=150x150&cht=qr&chl=13&choe=UTF-
   8";
   $("#image_url").val(imageURL);
   $("#mailhere").html("<a class='btn btn-primary pull-left'
   href='mailto:"+email+"'>**Mail**</a>");
}


<div class="modal-footer" id="qr-code-footer">
 <a id="printme" href="#" class="btn btn-primary pull-left">Print</a>
  <div id="mailhere" class="span1">
  </div>  
</div>

谢谢

4

1 回答 1

0

利用&body=Content

$("#mailhere").html("<a class='btn btn-primary pull-left' href='mailto:"+email+"&body=" + encodeURIComponent(imageURL) + "'>**Mail**</a>");
于 2012-08-03T16:38:52.397 回答