자바 이메일 보내기
Java 애플리케이션을 사용하여 이메일을 보내는 것은 매우 간단하지만 먼저 컴퓨터에 JavaMail API 및 JAF(Java Activation Framework)를 설치해야 합니다.
JavaMail(버전 1.2)에서 최신 버전을 다운로드할 수 있습니다.
최신 버전은 JAF(버전 1.1.1)에서 다운로드하실 수 있습니다.
이 파일을 다운로드하고 압축을 풀면 최상위 폴더에 많은 jar 파일이 있습니다. CLASSPATH에 mail.jar 및 activate.jar을 추가해야 합니다.
QQ의 SMTP 서버와 같은 타사 메일 서버를 사용하는 경우 기사 하단에서 전체 사용자 인증 예시를 볼 수 있습니다.
간단한 이메일 보내기
다음은 간단한 이메일 보내기의 예입니다. 로컬 호스트가 네트워크에 연결되어 있다고 가정합니다.
// 文件名 SendEmail.java import java.util.*; import javax.mail.*; import javax.mail.internet.*; import javax.activation.*; public class SendEmail { public static void main(String [] args) { // 收件人电子邮箱 String to = "abcd@gmail.com"; // 发件人电子邮箱 String from = "web@gmail.com"; // 指定发送邮件的主机为 localhost String host = "localhost"; // 获取系统属性 Properties properties = System.getProperties(); // 设置邮件服务器 properties.setProperty("mail.smtp.host", host); // 获取默认session对象 Session session = Session.getDefaultInstance(properties); try{ // 创建默认的 MimeMessage 对象 MimeMessage message = new MimeMessage(session); // Set From: 头部头字段 message.setFrom(new InternetAddress(from)); // Set To: 头部头字段 message.addRecipient(Message.RecipientType.TO, new InternetAddress(to)); // Set Subject: 头部头字段 message.setSubject("This is the Subject Line!"); // 设置消息体 message.setText("This is actual message"); // 发送消息 Transport.send(message); System.out.println("Sent message successfully...."); }catch (MessagingException mex) { mex.printStackTrace(); } } }
간단한 이메일을 보내려면 이 프로그램을 컴파일하고 실행하세요.
$ java SendEmail Sent message successfully....
여러 수신자에게 이메일을 보내려면 다음 방법을 사용하여 여러 수신자 ID를 지정하세요.
void addRecipients(Message.RecipientType type, Address[] addresses) throws MessagingException
다음은 매개변수에 대한 설명입니다. :
type:은 TO, CC 또는 BCC로 설정되어야 합니다. 여기서 CC는 CC를 나타내고 BCC는 Secret CC를 나타냅니다. 예: Message.RecipientType.TO
주소: 이메일 ID의 배열입니다. 이메일 ID를 지정할 때 InternetAddress() 메서드를 사용해야 합니다.
HTML 이메일 보내기
다음은 HTML 이메일 보내기의 예입니다. 로컬 호스트가 네트워크에 연결되어 있다고 가정합니다.
전송할 HTML 콘텐츠를 지정하기 위해 setContent() 메서드를 사용하여 두 번째 매개변수를 "text/html"에 전달하여 콘텐츠를 설정한다는 점을 제외하면 이전 예제와 매우 유사합니다.
// 文件名 SendHTMLEmail.java import java.util.*; import javax.mail.*; import javax.mail.internet.*; import javax.activation.*; public class SendHTMLEmail { public static void main(String [] args) { // 收件人电子邮箱 String to = "abcd@gmail.com"; // 发件人电子邮箱 String from = "web@gmail.com"; // 指定发送邮件的主机为 localhost String host = "localhost"; // 获取系统属性 Properties properties = System.getProperties(); // 设置邮件服务器 properties.setProperty("mail.smtp.host", host); // 获取默认的 Session 对象。 Session session = Session.getDefaultInstance(properties); try{ // 创建默认的 MimeMessage 对象。 MimeMessage message = new MimeMessage(session); // Set From: 头部头字段 message.setFrom(new InternetAddress(from)); // Set To: 头部头字段 message.addRecipient(Message.RecipientType.TO, new InternetAddress(to)); // Set Subject: 头字段 message.setSubject("This is the Subject Line!"); // 发送 HTML 消息, 可以插入html标签 message.setContent("<h1>This is actual message</h1>", "text/html" ); // 发送消息 Transport.send(message); System.out.println("Sent message successfully...."); }catch (MessagingException mex) { mex.printStackTrace(); } } }
HTML 이메일을 보내려면 이 프로그램을 컴파일하고 실행하세요:
$ java SendHTMLEmail Sent message successfully....
Send E-mail with attachments
다음은 첨부 파일이 있는 이메일을 보내는 예입니다. 로컬 호스트가 네트워크에 연결되어 있다고 가정합니다.
// 文件名 SendFileEmail.java import java.util.*; import javax.mail.*; import javax.mail.internet.*; import javax.activation.*; public class SendFileEmail { public static void main(String [] args) { // 收件人电子邮箱 String to = "abcd@gmail.com"; // 发件人电子邮箱 String from = "web@gmail.com"; // 指定发送邮件的主机为 localhost String host = "localhost"; // 获取系统属性 Properties properties = System.getProperties(); // 设置邮件服务器 properties.setProperty("mail.smtp.host", host); // 获取默认的 Session 对象。 Session session = Session.getDefaultInstance(properties); try{ // 创建默认的 MimeMessage 对象。 MimeMessage message = new MimeMessage(session); // Set From: 头部头字段 message.setFrom(new InternetAddress(from)); // Set To: 头部头字段 message.addRecipient(Message.RecipientType.TO, new InternetAddress(to)); // Set Subject: 头字段 message.setSubject("This is the Subject Line!"); // 创建消息部分 BodyPart messageBodyPart = new MimeBodyPart(); // 消息 messageBodyPart.setText("This is message body"); // 创建多重消息 Multipart multipart = new MimeMultipart(); // 设置文本消息部分 multipart.addBodyPart(messageBodyPart); // 附件部分 messageBodyPart = new MimeBodyPart(); String filename = "file.txt"; DataSource source = new FileDataSource(filename); messageBodyPart.setDataHandler(new DataHandler(source)); messageBodyPart.setFileName(filename); multipart.addBodyPart(messageBodyPart); // 发送完整消息 message.setContent(multipart ); // 发送消息 Transport.send(message); System.out.println("Sent message successfully...."); }catch (MessagingException mex) { mex.printStackTrace(); } } }
프로그램을 컴파일하고 실행하여 첨부 파일이 포함된 이메일을 보내세요.
$ java SendFileEmail Sent message successfully....
사용자 인증 부분
사용자 인증을 위해 이메일 서버에 사용자 이름과 비밀번호를 제공해야 하는 경우 다음 설정을 통해 완료할 수 있습니다.
props.put("mail.smtp.auth", "true"); props.setProperty("mail.user", "myuser"); props.setProperty("mail.password", "mypwd");
이메일의 기타 전송 메커니즘은 다음과 같습니다. 위와 일치합니다.
사용자 이름과 비밀번호 확인이 필요한 이메일 전송의 예:
이 예는 QQ 메일 서버를 예로 들어 QQ 사서함 배경에 로그인하고 "설정"에서 POP3/SMTP 서비스를 활성화해야 합니다. = "아래 그림과 같은 계정:
Java 코드는 다음과 같습니다.
// 需要用户名密码邮件发送实例 //文件名 SendEmail2.java //本实例以QQ邮箱为例,你需要在qq后台设置 import java.util.Properties; import javax.mail.Authenticator; import javax.mail.Message; import javax.mail.MessagingException; import javax.mail.PasswordAuthentication; import javax.mail.Session; import javax.mail.Transport; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; public class SendEmail2 { public static void main(String [] args) { // 收件人电子邮箱 String to = "xxx@qq.com"; // 发件人电子邮箱 String from = "xxx@qq.com"; // 指定发送邮件的主机为 localhost String host = "smtp.qq.com"; //QQ 邮件服务器 // 获取系统属性 Properties properties = System.getProperties(); // 设置邮件服务器 properties.setProperty("mail.smtp.host", host); properties.put("mail.smtp.auth", "true"); // 获取默认session对象 Session session = Session.getDefaultInstance(properties,new Authenticator(){ public PasswordAuthentication getPasswordAuthentication() { return new PasswordAuthentication("xxx@qq.com", "qq邮箱密码"); //发件人邮件用户名、密码 } }); try{ // 创建默认的 MimeMessage 对象 MimeMessage message = new MimeMessage(session); // Set From: 头部头字段 message.setFrom(new InternetAddress(from)); // Set To: 头部头字段 message.addRecipient(Message.RecipientType.TO, new InternetAddress(to)); // Set Subject: 头部头字段 message.setSubject("This is the Subject Line!"); // 设置消息体 message.setText("This is actual message"); // 发送消息 Transport.send(message); System.out.println("Sent message successfully....from w3cschool.cc"); }catch (MessagingException mex) { mex.printStackTrace(); } } }