使用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 个群。