使用无声主题发送电子邮件

时间:2014-12-17 14:33:37

标签: c# html asp.net-mvc-4

有没有办法在电子邮件中发送无法由发件人修改的无声主题?

<div class="col-md-11">
 <a href="mailto:support@support.com?subject=Subject 
          For Email&body=This email is from person or unknown user">E-mail
 </a>
 <p>
    <small>If you have questions, please send requests 
           via e-mail to support team: 
    <a href="mailto:support@support.com?subject=Subject For 
       Email&body=This email is from person or unknown user">
       support@support.com
    </a>
    </small>
 </p>
</div>

href="mailto:support@support.com?subject=Subject For 
      Email&body=This email is from person or unknown user"

这将给我邮件到电子邮件领域和主题领域的主题,甚至是正文中的文本,但我想知道电子​​邮件中的无声主题。

1 个答案:

答案 0 :(得分:1)

电子邮件结构在RFC 2822中有所描述。

没有&#34;沉默的主题&#34;在电子邮件字段中,因此您只能使用通常的主题字段。

mailto URI方案强制您的链接在用户计算机上的默认邮件客户端中作为电子邮件打开。并且没有普遍的&#34;防止任何邮件客户端更改该字段的方法。

因此,您无法按照自己描述的方式发送邮件。

相关问题