1.前提准备工作:
首先,邮件的发送方要开启POP3 和SMTP服务--即发送qq邮件的账号要开启POP3 和SMTP服务
2.开启方法:
登陆qq邮箱
3.点击 设置
4.点击—-账户
5.找到:POP3/IMAP/SMTP/Exchange/CardDAV/CalDAV服务 —点击开启
6.送短信 —–点击确定
7.稍等一会,很得到一个授权码! –注意:这个一定要记住,一会用到
8.点击保存修改 —OK 完成
9.java 测试代码:
package cn.cupcat.test
import java.util.Properties
import javax.mail.Message
import javax.mail.MessagingException
import javax.mail.Session
import javax.mail.Transport
import javax.mail.internet.AddressException
import javax.mail.internet.InternetAddress
import javax.mail.internet.MimeMessage
import javax.mail.internet.MimeMessage.RecipientType
public class SendmailUtil {
public static void main(String[] args) throws AddressException,MessagingException {
Properties properties = new Properties()
properties.put("mail.transport.protocol", "smtp")// 连接协议
properties.put("mail.smtp.host", "smtp.qq.com")// 主机名
properties.put("mail.smtp.port", 465)// 端口号
properties.put("mail.smtp.auth", "true")
properties.put("mail.smtp.ssl.enable", "true")//设置是否使用ssl安全连接 ---一般都使用
properties.put("mail.debug", "true")//设置是否显示debug信息 true 会在控制台显示相关信息
//得到回话对象
Session session = Session.getInstance(properties)
// 获取邮件对象
Message message = new MimeMessage(session)
//设置发件人邮箱地址
message.setFrom(new InternetAddress("123456789@qq.com"))
//设置收件人地址message.setRecipients(RecipientType.TO,new InternetAddress[] { new InternetAddress("987654321@qq.com") })
//设置邮件标题
message.setSubject("这是第一封Java邮件")
//设置邮件内容
message.setText("内容为: 这是第一封java发送来的邮件。")
//得到邮差对象
Transport transport = session.getTransport()
//连接自己的邮箱账户
transport.connect("123456789@qq.com", "vvctybgbvvophjcj")//密码为刚才得到的授权码
//发送邮件transport.sendMessage(message, message.getAllRecipients())
}
}
10.运行就会发出邮件了。。。。
下面是我收到邮件的截图,当然我把源码中的邮件地址都是修改了,不是真实的,你们测试的时候,可以修改能你们自己的邮箱。最后,祝你也能成功,如果有什么问题,可以一起讨论!
注意事项
得到的授权码一定要保存好,程序中要使用
JAVA邮件发送的大致过程是这样的的:1、构建一个继承自javax.mail.Authenticator的具体类,并重写里面的getPasswordAuthentication()方法。此类是用作登录校验的,以确保你对该邮箱有发送邮件的权利。
2、构建一个properties文件,该文件中存放SMTP服务器地址等参数。
3、通过构建的properties文件和javax.mail.Authenticator具体类来创建一个javax.mail.Session。Session的创建,就相当于登录邮箱一样。剩下的自然就是新建邮件。
4、构建邮件内容,一般是javax.mail.internet.MimeMessage对象,并指定发送人,收信人,主题,内容等等。
5、使用javax.mail.Transport工具类发送邮件。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)