我必须声明一个变量,我需要保留多个句子(vbscript是我正在使用的语言)。所以,我把vbCrLf放在句子的末尾,以便休息一下。但它没有给我休息,而是给了我一整段。
strHtmlBody = "<div><font face='Arial' size='-1'>Greetings "& RS("firstname") &":"& vbCrLf & _
"Here is the email that contains your account information to access your account at www.example.com." & VbCrLf & VbCrLf & _
"Your Email Address: " & RS("Email") & VbCrLf & _
"Your Password : " & RS("Password") & VbCrLf & vbCrLf & _
"Remember, if you have any questions or concerns, please let us know, simply reply to this email." & VbCrLf & _
"ABC Company" & vbCrLf & _
"http://www.example.com" & vbCrLf & vbCrLf
strHtmlBody = strHtmlBody & "</div>"
答案 0 :(得分:0)
HTML忽略vbCrLf
代表的大多数空格。在其位置使用<br>
标记。