如何在使用C#發送郵件之前定製消息?
我想在文本的某個地方斷行,或者在消息中設置特定的字體。
任何人都可以幫助我嗎?
PICE代碼:
如何在發送郵件之前向郵件添加樣式?
SEPNA.BLL.Mail mail = new BLL.Mail();
RichTextBox rtb = new RichTextBox();
Font boldfont = new Font("B Nazanin", 14, FontStyle.Bold);
rtb.RightToLeft = RightToLeft.Yes;
rtb.Font = boldfont;
SEPNA.DAL.DBMLs.COM_TbUser user = new SEPNA.DAL.Implementation.UsersDAL().GetUserByUserID(DisplayID);
if (mailType == Types.WorkFlowMail.Mail)
{
switch (step)
{
case SEPNA.Types.FlowStep.PackageUpload:
rtb.Text = MessageBody.Replace("[DisplayName]", user.DisplayName).Replace("[ApplicationName]", AppName).Replace("[ActivityID]", activity).Replace("\n", new StringBuilder().AppendLine().ToString());
Subject = Subject.Replace("[ApplicationName]", AppName);
break;
商祺!
請告訴我們你的代碼,你已經嘗試過的東西。 – Dave 2014-10-29 14:00:33