我正在尝试使用 SMTP 进行密码恢复。在电子邮件中,我添加了一些必要的文本和超链接,供用户恢复密码。正如您在此处看到的代码,我添加了一个超链接。
strBody.Append("<a href=**destination url** emailId=" + txtEmailId.Text + "&uName=" + txtnric.Text + "&uCode=" + uniqueCode + ">Click here to change your password.</a>");
为了添加非超链接文本,我在代码后面添加了这个语句。
strBody.Append("<a href=**destination url** emailId=" + txtEmailId.Text + "&uName=" + txtnric.Text + "&uCode=" + uniqueCode + ">Click here to change your password.</a> \t\t\t\t This is a computer generated email for your password recovery. \t\t please do not reply this email.");
我在字符串中添加了一个 \t ,但它没有在电子邮件中显示任何制表符间距。我在这里做错了什么?