younet 发表于 2005-8-8 20:31:34

调用winwebmail发送html格式邮件时遇到的问题,也许您会遇到。

Set mailsend = Server.CreateObject("easymail.MailSend")<br>
发送html格式邮件时用的格式如下:<br>
mailsend.EM_HTML_Text ="<html>您的注册用户名与密码</html>"<br>
那我的邮件代码比较多时候,怎么把代码连接起来呢?我尝试过这样,但不行:<br>
mailsend.EM_HTML_Text =mailsend.EM_HTML_Text&"<html>您的注册用户名与密码"<br>
mailsend.EM_HTML_Text =mailsend.EM_HTML_Text&"请注意查收"<br>
mailsend.EM_HTML_Text =mailsend.EM_HTML_Text&"</html>"<br>
<br>
请问哪里有错呢?该怎么连接呢?当然不能一行过。
页: [1]
查看完整版本: 调用winwebmail发送html格式邮件时遇到的问题,也许您会遇到。