javax.mail.MessagingException: 501 Syntax: HELO hostname Linux端异常解决
在项目里面使用javamail在window环境正常,放在服务器上面的时候抛出异常javax.mail.MessagingException: 501 Syntax: HELO hostname ,原因是在linux无法解析邮件服务器名称为ip地址,解决方法有二种:
第一种,在linux服务器上面,/etc/hosts
127.0.0.1 localhost
::1 localhost6.localdomain6 localhost6
第二种,在java代码里面配置 props.put("mail.smtp.localhost", "127.0.0.1");这事关键的地方~!
Mail.java
/**
* @author huangjing
* @date 2014-2-13
*/
public class Mail {
static int _PORT = 465; // smtp端口
// static String _SERVER = "smtp.exmail.qq.com"; // smtp服务器地址
static String _SERVER = "113.108.16.119";
// static String _FROM = "huangjing@yangchehome.com"; // 发送者
static String _FROM = "养车之家"; // 发送者
static String _USER = "customer_service@yangchehome.com"; // 发送者地址
static String _PASSWORD = "邮箱的密码"; // 密码 static String _PC_IP = "127.0.0.1";
}
SendMail.java
public class SendMail {
private static String ERROR_MASSAGE = "邮件发送失败,请稍后再试!";
private static String SUCCESS_MASSAGE = "邮件发送成功!"; private Logger logger = Logger.getLogger(SendMail.class); /**
* @param args
* @throws UnsupportedEncodingException
*/
public boolean sendMain(String subject, String content, String to)
throws UnsupportedEncodingException {
try {
Properties props = new Properties();
props.put("mail.smtp.host", Mail._SERVER);
props.put("mail.smtp.port", Mail._PORT);
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.localhost", Mail._PC_IP);
Transport transport = null;
Session session = Session.getDefaultInstance(props, null);
transport = session.getTransport("smtp");
transport.connect(Mail._SERVER, Mail._USER, Mail._PASSWORD);
MimeMessage msg = new MimeMessage(session);
msg.setSentDate(new Date());
// InternetAddress fromAddress = new InternetAddress(
// Mail._USER, MimeUtility.encodeText(new String(
// Mail._FROM.getBytes("ISO-8859-1"),
// "UTF-8"), "gb2312", "B"));
InternetAddress fromAddress = new InternetAddress(
Mail._USER, MimeUtility.encodeText(Mail._FROM, "gb2312", "B"));
//编码方式有两种:"B"代表Base64、"Q"代表QP(quoted-printable)方式。 msg.setFrom(fromAddress);
InternetAddress toAddress = new InternetAddress(to);
msg.setRecipient(Message.RecipientType.TO, toAddress);
msg.setSubject(subject, "UTF-8");
msg.setText(content, "UTF-8");
msg.saveChanges(); transport.sendMessage(msg, msg.getAllRecipients());
transport.close();
} catch (NoSuchProviderException e) {
e.printStackTrace();
logger.error(e.getMessage());
return false;
} catch (MessagingException e) {
e.printStackTrace();
logger.error(e.getMessage());
return false;
}
return true;
} public boolean sendMainHTML(String subject, String content, String to)
throws UnsupportedEncodingException {
try {
Properties props = new Properties();
props.put("mail.smtp.host", Mail._SERVER);
props.put("mail.smtp.port", Mail._PORT);
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.localhost", Mail._PC_IP); Transport transport = null;
Session session = Session.getDefaultInstance(props, null);
transport = session.getTransport("smtp");
transport.connect(Mail._SERVER, Mail._USER, Mail._PASSWORD);
MimeMessage msg = new MimeMessage(session);
msg.setSentDate(new Date());
// InternetAddress fromAddress = new InternetAddress(
// Mail._USER, MimeUtility.encodeText(
// new String(Mail._FROM
// .getBytes("ISO-8859-1"), "UTF-8"),
// "gb2312", "B"));
InternetAddress fromAddress = new InternetAddress(
Mail._USER, MimeUtility.encodeText(
Mail._FROM, "gb2312", "B"));
//编码方式有两种:"B"代表Base64、"Q"代表QP(quoted-printable)方式。 msg.setFrom(fromAddress);
InternetAddress toAddress = new InternetAddress(to);
msg.setRecipient(Message.RecipientType.TO, toAddress);
msg.setSubject(subject, "UTF-8");
msg.setContent(content, "text/html;charset=UTF-8");
msg.saveChanges(); transport.sendMessage(msg, msg.getAllRecipients());
transport.close();
} catch (NoSuchProviderException e) {
e.printStackTrace();
logger.error(e.getMessage(),e);
return false;
} catch (MessagingException e) {
e.printStackTrace();
logger.error(e.getMessage(),e);
return false;
}
return true;
}
}
javax.mail.MessagingException: 501 Syntax: HELO hostname Linux端异常解决的更多相关文章
- 【Linux】【Jenkins】邮件发送失败的问题javax.mail.MessagingException: Could not connect to SMTP host:
javax.mail.MessagingException: Could not connect to SMTP host: smtp.126.com,port:25 解决方案: 之前用的是126邮箱 ...
- spring -java.lang.NoClassDefFoundError: javax/mail/MessagingException
今天遇到这个问题,网上找了半天,终于解决了,最后记录一下. spring集成了mail,于是就测试了下,结果报了java.lang.NoClassDefFoundError: javax/mail/M ...
- 使用 QQ 邮箱发送邮件报错:java.net.SocketTimeoutException: Read timed out. Failed messages: javax.mail.MessagingException: Exception reading response
使用 QQ 邮箱发送邮件报错:java.net.SocketTimeoutException: Read timed out. Failed messages: javax.mail.Messagin ...
- javax.mail 遇到501 mail from address must be same as authorization user 的問題
使用不同的兩個帳戶发送email时,第一个账户可以发送成功,但到第二个账户的时候就报出了501 mail from address must be same as authorization user ...
- javax.mail.MessagingException: Could not connect to SMTP host: smtp.xdf.cn
1.问题描述:关于使用Java Mail进行邮件发送,抛出Could not connect to SMTP host: xx@xxx.com, port: 25的异常可能: 当我们使用Java Ma ...
- javax.mail 发送邮件异常
一.运行过程抛出异常 1.Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/mail/util/ ...
- java使用javax.mail进行免费的邮件发送
1. 建议发送方使用阿里云邮箱https://mail.aliyun.com/,阿里云默认是开启个人邮箱pop3.smtp协议的,所以无需在阿里云邮箱里设置,pop3.smtp的密码默认邮箱登录密码, ...
- 利用springframework+javax.mail发邮件(普通邮件、带附件邮件、HTML格式邮件)
Spring提供了发送电子邮件的支持,可以发送普通邮件.带附件邮件.HTML格式邮件,甚至还可以使用Velocity模板定制化邮件内容. 一.引入相关的库 1 2 3 4 5 6 7 8 9 10 1 ...
- javax.mail用smtp服务器发送带附件的邮件
jar包: javax.mail-1.5.5.jar maven配置: <dependency> <groupId>com.sun.mail</groupId> & ...
随机推荐
- Qt 5 在Windows下 出现QApplication: No such file or directory 问题的解决办法
解决方法是:在*.pro工程项目文件中添加一行QT += widgets,然后再编译运行就OK了.
- 杭电ACM2092--整数解
杭电ACM2092--整数解 分析 http://acm.hdu.edu.cn/showproblem.php?pid=2092 一个YES,一个Yes.试了10几次..我也是无语了..哪里都不 ...
- Qt获得网页源码
1.工程中添加网络模块 打开你的.pro文件插入以下代码 QT += network 2.添加代码 CodeQString NetWork::getWebSource(QUrl url) { QNet ...
- cookie+session,会话时间设定
很多Web程序中第一次登录后,在一定时间内(如2个小时)再次访问同一个Web程序时就无需再次登录,而是直接进入程序的主界面(仅限于本机). 实现这个功能关键就是服务端要识别客户的身份.而用Cookie ...
- 我们为什么要使用 href="javascript:void(0)"
做过web前端UI的小伙伴们都知道,有时候我们在网页中会使用一些超级链接,而这些链接不用指向任何地址,只是为了配合javascript的onclick事件而存在的,当我们点击这些链接时(其实也可以看做 ...
- Oracle10G的Sga_max_size和sga_target应该如何设置啊!
1调整原因 我们的客户反应现在我们公司的软件使用起来比较漫.目前他们已经用快要两年了.根据用户反应的情况,公司派我到现场做数据库调优.我在现场走访了几个部门,也向操作人员了解了一些情况.我初步分析认定 ...
- h5 web模板
<!DOCTYPE html> <!-- 使用 HTML5 doctype,不区分大小写 --><html lang="zh-cmn-Hans"> ...
- phpcms v9 源码解析(4)content模块下的index.php文件的init()方法解析
在了解index.php中的init函数的时候,让我们先看看最开始的几行代码 1-5 第二行, defined('IN_PHPCMS') or exit('Nopermission resource ...
- php异步调试和线上调试网站程序的方法
当碰到一个网站需要不间断运行,但又需要调试该网站的程序错误的时候,该如何办呢?是靠经验一点点猜测,还是直接打印错误信息让其在页面输出? 下面分享一种方法同时满足这两种条件,既方便网站程序错误调试,又不 ...
- protected internal修饰符
见过这样的修饰符,但是没有仔细考虑过,今天做一个小练习. 先给出一个链接,别人在网上讨论的:http://wenku.baidu.com/view/4023f65abe23482fb4da4cfe.h ...