java邮件教程_Java发送Email/邮件

本文档提供了使用JavaMail API和Java Activation Framework发送电子邮件的详细步骤,包括发送纯文本邮件、HTML邮件以及带有附件的邮件。教程还涵盖了邮件服务器的配置、多个收件人以及用户认证的基本设置。
摘要由CSDN通过智能技术生成

使用Java应用程序发送邮件是很简单的,需要安装JavaMail API 和Java Activation Framework (JAF) 在机器上。

可以从Java的标准网站上下载JavaMail(版本1.2)的最新版本。

可以从Java的标准网站下载最新版本的JAF(版本1.1.1)。

下载并解压缩这些文件,在新创建的顶层目录,会发现一些jar文件应用。需要添加了mail.jar和activation.jar文件在CLASSPATH中。

发送一个简单的E-mail:

下面是一个例子,从机器发送一个简单的电子邮件。这里假设你的电脑已经可以连接到互联网,并有足够的能力来发送电子邮件。

// File Name SendEmail.javaimportjava.util.*;importjavax.mail.*;importjavax.mail.internet.*;importjavax.activation.*;publicclassSendEmail{publicstaticvoidmain(String[]args){// Recipient's email ID needs to be mentioned.Stringto="abcd@gmail.com";// Sender's email ID needs to be mentionedStringfrom="web@gmail.com";// Assuming you are sending email from localhostStringhost="localhost";// Get system propertiesPropertiesproperties=System.getProperties();// Setup mail serverproperties.setProperty("mail.smtp.host",host);// Get the default Session object.Sessionsession=Session.getDefaultInstance(properties);try{// Create a default MimeMessage object.MimeMessagemessage=newMimeMessage(session);// Set From: header field of the header.message.setFrom(newInternetAddress(from));// Set To: header field of the header.message.addRecipient(Message.RecipientType.TO,newInternetAddress(to));// Set Subject: header fieldmessage.setSubject("This is the Subject Line!");// Now set the actual messagemessage.setText("This is actual message");// Send messageTransport.send(message);System.out.println("Sent message successfully....");}catch(MessagingExceptionmex){mex.printStackTrace();}}}

编译并运行这个程序发送一个简单的电子邮件:

$ javaSendEmailSentmessage successfully....

如果想发送电子邮件给多个收件人,然后下面的方法将被用来指定多个电子邮件标识:

voidaddRecipients(Message.RecipientTypetype,Address[]addresses)throwsMessagingException

这里的参数的说明:

type: 这将被设定为TO,CC或BCC。在这里,CC代表抄送和BCC代表黑抄送。例子Message.RecipientType.TO

addresses: 这是电子邮件的ID的数组。需要使用InternetAddress() 方法,同时指定电子邮件ID

Send an HTML E-mail:

下面是一个例子,从机器发送的HTML电子邮件。这里假设你的本地主机连接到互联网,并有足够的能力来发送电子邮件。

这个例子非常相似,前一个,除了在这里我们使用的是使用setContent()方法来设置内容的第二个参数是"text/html"类型指定的HTML内容被包含在消息中。

通过这个例子,可以发送大如喜欢HTML内容。

// File Name SendHTMLEmail.javaimportjava.util.*;importjavax.mail.*;importjavax.mail.internet.*;importjavax.activation.*;publicclassSendHTMLEmail{publicstaticvoidmain(String[]args){// Recipient's email ID needs to be mentioned.Stringto="abcd@gmail.com";// Sender's email ID needs to be mentionedStringfrom="web@gmail.com";// Assuming you are sending email from localhostStringhost="localhost";// Get system propertiesPropertiesproperties=System.getProperties();// Setup mail serverproperties.setProperty("mail.smtp.host",host);// Get the default Session object.Sessionsession=Session.getDefaultInstance(properties);try{// Create a default MimeMessage object.MimeMessagemessage=newMimeMessage(session);// Set From: header field of the header.message.setFrom(newInternetAddress(from));// Set To: header field of the header.message.addRecipient(Message.RecipientType.TO,newInternetAddress(to));// Set Subject: header fieldmessage.setSubject("This is the Subject Line!");// Send the actual HTML message, as big as you likemessage.setContent("

This is actual message

","text/html");// Send messageTransport.send(message);System.out.println("Sent message successfully....");}catch(MessagingExceptionmex){mex.printStackTrace();}}}

编译并运行这个程序来发送HTML电子邮件:

$ javaSendHTMLEmailSentmessage successfully....

发送附件的电子邮件:

下面是一个例子与附件从机器发送电子邮件。这里假设你的本地主机连接到互联网,并有足够的能力来发送电子邮件。

// File Name SendFileEmail.javaimportjava.util.*;importjavax.mail.*;importjavax.mail.internet.*;importjavax.activation.*;publicclassSendFileEmail{publicstaticvoidmain(String[]args){// Recipient's email ID needs to be mentioned.Stringto="abcd@gmail.com";// Sender's email ID needs to be mentionedStringfrom="web@gmail.com";// Assuming you are sending email from localhostStringhost="localhost";// Get system propertiesPropertiesproperties=System.getProperties();// Setup mail serverproperties.setProperty("mail.smtp.host",host);// Get the default Session object.Sessionsession=Session.getDefaultInstance(properties);try{// Create a default MimeMessage object.MimeMessagemessage=newMimeMessage(session);// Set From: header field of the header.message.setFrom(newInternetAddress(from));// Set To: header field of the header.message.addRecipient(Message.RecipientType.TO,newInternetAddress(to));// Set Subject: header fieldmessage.setSubject("This is the Subject Line!");// Create the message partBodyPartmessageBodyPart=newMimeBodyPart();// Fill the messagemessageBodyPart.setText("This is message body");// Create a multipar messageMultipartmultipart=newMimeMultipart();// Set text message partmultipart.addBodyPart(messageBodyPart);// Part two is attachmentmessageBodyPart=newMimeBodyPart();Stringfilename="file.txt";DataSourcesource=newFileDataSource(filename);messageBodyPart.setDataHandler(newDataHandler(source));messageBodyPart.setFileName(filename);multipart.addBodyPart(messageBodyPart);// Send the complete message partsmessage.setContent(multipart);// Send messageTransport.send(message);System.out.println("Sent message successfully....");}catch(MessagingExceptionmex){mex.printStackTrace();}}}

编译并运行这个程序来发送HTML电子邮件:

$ javaSendFileEmailSentmessage successfully....

用户认证部分:

如果需要提供用户ID和密码的电子邮件服务器进行身份验证的目的,那么可以按如下方法设置这些属性:

props.setProperty("mail.user","myuser");props.setProperty("mail.password","mypwd");

邮件发送机制的其余部分将继续如上面所述。

¥ 我要打赏

纠错/补充

收藏

加QQ群啦,易百教程官方技术学习群

注意:建议每个人选自己的技术方向加群,同一个QQ最多限加 3 个群。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值