Notice
Recent Posts
Recent Comments
준호씨의 블로그
java - javamail 로 이메일 발송하기. rcpt to 와 header to 를 서로 다르게 세팅하기 본문
반응형
기본 예제(http://junho85.pe.kr/954) 에 다음과 같이 Transport.send 함수 두번째 인자로 InternetAddress 배열을 넣어준다.
InternetAddress[] toAddress = new InternetAddress[] { new InternetAddress(to) };
Transport.send(message, toAddress); // send
이렇게 지정 해 주지 않으면 message 의 addRecipient 한 정보로 발송하게 된다. header 에 to 헤더를 빼고 싶거나 바꿔서 넣고 싶은 경우 위와 같이 하면 된다.
반응형
'개발이야기 > 이메일시스템' 카테고리의 다른 글
javamail - eml 파싱하기. 메일 body 출력하기. (0) | 2018.05.28 |
---|---|
java - javamail 로 이메일 발송하기. TLS 발송 (0) | 2018.05.28 |
c - smtp client library (0) | 2018.04.24 |
c - libcurl 로 smtp 메일 발송하기 (0) | 2018.04.16 |
email - 가비아에서 도메인 SPF 설정하기 (0) | 2018.02.28 |
Comments