我正在尝试自定义电子邮件主题,我的想法是用户编写自己的主题...所以,当我在主题空间收到邮件时,出现用户输入..但我只获得无主题 我做错了什么?
public void Contact(String Name, String Email, String Subject, String Description)
{
Subject.Replace("{Subject}", Subject);
var templateText = GetTemplateHtml("Contacto.html");
templateText = templateText
.Replace("{Comentario}", Description)
.Replace("{Email}", Email)
.Replace("{Name}", Name);
EmailBody = templateText;
}
答案 0 :(得分:0)
仅当Subject =“{Subject}”
时才会有效您是否在代码中放置了断点,以确认该值? 你在代码中传递了这个值吗? 此外,您实际上并没有对此值做任何进一步的操作。