Jmail发送邮件与带附件乱码解决办法分享
jamil发送邮件的具体用法:
首先,我们要先下载jamil.dll的组件,然后添加引用using jmail,然后再本机或者服务器上注册一下
将jmail.dll拷贝到服务器的system32目录下,开始-运行-cmd-输入regsvr32 jmail.dll,注册成功,然后写代码
代码如下(方法)
using jmail;
protected void sendmail(string sender, string sendermail, string receiver, string subject, string content)
{
jmail.messageclass jmmessage = new jmail.messageclass();
//设置字符集
jmmessage.charset = "gb2312";
//发件人邮箱地址
jmmessage.from = sendermail;
//发件人姓名
jmmessage.fromname = sender;
//设置主题
jmmessage.subject = subject;
//设置内容
jmmessage.body = content;
// 设置收件人邮箱
jmmessage.addrecipient(receiver, "", "");
// 设置登陆邮箱的用户名和密码
jmmessage.mailserverusername = "ss";
jmmessage.mailserverpassword = "ss";
//设置smtp服务器地址
if (jmmessage.send("smtp.163.com", false))
{
response.write("<script>alert('发送成功')</script>");
}
else
response.write("<script>alert('www.jb51.net发送失败')</script>");
}
上面就是jmail的具体用法!
我想放一个附件如下
jmail.addattachment(“c:autoexec.bat”)
jmail.addattachment(“myimage.gif”,true)
结果出现如下错误
this is a multipart message in mime format. —-next_bm_aeb3968967d044dc9e208d04088c60b4 content-type: text/html; charset=”gb2312″ content-transfer-encoding: quoted-printable sdfdd —-next_bm_aeb3968967d044dc9e208d04088c60b4 content-type: application/octet-stream; name=”=?gb2312?q?12d95384-576f-424f-bf15-f8e2397e2791=2ejpg?=” content-transfer-encoding: base64 content-description: =?gb2312?q?12d95384-576f-424f-bf15-f8e2397e2791=2ejpg?= content-disposition: inline; filename=”=?gb2312?q?12d95384-576f-424f-bf15-f8e2397e2791=2ejpg?=” content-id:
网上找了解决方法:
addattachment(filename, isinline, contenttype) :
string为邮件添加一个文件型的附件。如果inline 属性被设置为true,这个附件就是一个可嵌入的附件,使用addattachment()方法可返回content id,这在发送html 邮件时是非常有用的。
例:
jmail.addattachment(“c:autoexec.bat”)
jmail.addattachment(“myimage.gif”,true)
可嵌入的附件
2.addurlattachment(bstrurl, bstrattachas, isinline, bstrauth) : string从指定的url 下载文件并添加为附件。第二个参数“attachas”用来更改添加为附件的文件的文件名,如果inline 属性被设置为true,这个附件就是一个可嵌入的附件,使用ddattachment()方法可返回content id,这在发送html 邮件时是非常有用的。最后一个参数为可选项,是当服务器需要身份验证时使用的。
例
jmail.addurlattachment(“w3jmail4.exe”,”w3jmail4.exe”)
jmail.addurlattachment”w3jmail4.exe”, “w3jmail4.exe”,false, “myusername:mypassword”)jmail.addurlattachment”dimaclogo.gif”,”dimaclogo.gif”,true )
测了一下,好像跟两个方法没什么关系。后来在网上有人说把message.contenttype =”text/html”设置去掉(就是不要去设置contenttype属性),试了一下,还真发送成功了
上一篇: [STM32CubeMX]学习笔记5:ADC模数转换电压至串口输出
下一篇: 计算字符串长度