반응형
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;
import javax. mail.internet .MimeUtility;
public class Gmail extends Authenticator {
public static void main(String [] args ) {
//보내는 서버 주소
String host = "smtp.gmail.com";
//메일 제목 설정
String subject = "메일제목 테스트입니다.";
//받는사람 이메일 주소
String from = "USERID@gmail.com 주소";
//보내는사람 이름
String fromName = "홍길동" ;
//받는사람 이메일주소
String to = "USERID@gmail.com 주소";
try {
Properties props = new Properties();
props.put ("mail.smtp.starttls.enable", "true");
props.put ("mail.transport.protocol", "smtp");
props.put ("mail.smtp.host", host);
props.setProperty ("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory" );
props.put ("mail.smtp.port", "465");
props.put ("mail.smtp.user", from);
props.put ("mail.smtp.auth", "true");
//보내는사람의 STMP 로그인을 통한 Session 정보 취득
Session mailSession = Session.getInstance (props,
new javax.mail. Authenticator() {
protected PasswordAuthentication getPasswordAuthentication () {
return new PasswordAuthentication("SMTP 계정아이디","SMTP 계정 비밀번호");
}
});
Message msg = new MimeMessage(mailSession );
msg.setFrom (new InternetAddress(from , MimeUtility.encodeText (
fromName, "UTF-8", "B")));//
//메일을 동시에 여러명을 보내고 싶을때는 배열로 이메일 주소를 작성한다.
InternetAddress[] address1 = { new InternetAddress (to) };
msg.setRecipients (Message. RecipientType.TO , address1);
msg.setSubject (subject); //제목
msg.setSentDate (new java.util.Date());//보내는날짜
msg.setContent (getMailString(), "text/html;charset=euc-kr" ); //본문내용 보내기
Transport.send (msg); //만들어진 이메일 전송실행
} catch (MessagingException ex) {
ex.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 본문내용 작성
* @return string 내용
*/
public static String getMailString(){
StringBuffer sb = new StringBuffer();
sb.append ("내용을 입력합니다.");
sb.append ("내용을 입력합니다.");
sb.append ("<br/> 내용을 입력합니다.");
return sb .toString();
}
}
반응형
'DEMO CODE > JAVA 활용' 카테고리의 다른 글
[JAVA] PDF파일 이미지 변환 [PDF to IMG] (0) | 2023.02.09 |
---|---|
[JAVA] 이메일전송 (0) | 2014.01.14 |
[JAVA] POI 엑셀파일 쓰기 ( .xls .xlsx 확장자 ) (1) | 2014.01.10 |
[JAVA] POI 엑셀파일 읽기 ( .xlsx 확장자 ) (0) | 2014.01.10 |
[JAVA] POI 엑셀파일 읽기 ( .xls 확장자 ) (2) | 2014.01.10 |