JavaMail 配置腾讯邮箱服务器注意事项。

示例代码:

import java.util.*;
import javax.mail.*;
import javax.mail.internet.*;
public class SendEmail {
    public static void main(String [] args) {        
        
        String mailHost = "smtp.exmail.qq.com";        
        String from = "ygb@baichengtax.com", to = "ygb@baichengtax.com"; 
        String user = "ygb@baichengtax.com", password = "***********"; 
        
        Properties props = new Properties();
        props.setProperty("mail.smtp.host", mailHost); 
        props.put("mail.smtp.auth", "true"); 
        props.put("mail.smtp.port", "465:1");
       // props.put("mail.smtp.socketFactory.class","javax.net.ssl.SSLSocketFactory");
        
        Session session = Session.getInstance(props,new javax.mail.Authenticator() {
            protected PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication(user, password);
            }
        });
        
        session.setDebug(true);
        
        try{
            MimeMessage msg = new MimeMessage(session);
            msg.setFrom(from);
            msg.addRecipients(Message.RecipientType.TO, to);
            msg.setSubject("A test mail");
            msg.setText("This is  test message;");
           
            Transport.send(msg);
        }catch (Exception e) {
            e.printStackTrace();
        }
    }
}


参数配置注意两个地方:

1、 user 设置邮箱账号的全名, 包括邮箱服务器地址;

2、mail.smtp.port 设置为 465:1, 不能单独设置个456。

邮箱服务器设置:

具体设置方法参考:

如何设置IMAP、POP3/SMTP及其SSL加密方式? -帮助中心-企业邮

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值