지메일발송시 아래와 같이 리턴됨. Remote host said[Response Message]: 550-5.7.1 [x.x.x.x] Messages missing a valid messageId header are not 550 5.7.1 accepted. k4-20020a170902ce0400b001746ff6ee6dsi554631plg.413 - gsmtp STEP: DATA SEND 메일 헤더를 확인해보니아래와 같이 되어 있음(@가 2개!) Message-ID: X-Mailer: Microsoft Office Outlook 12.0 아웃룩버전이 2007.. 아웃룩 버전 확인 (tistory.com) 아웃룩 버전 확인 Since the first release of Outlook, Microsoft..
curl을 이용해서 메일발송. curl 버전 7.20.0 이상에서만 작동합니다. 따라서 이전 버전의 curl을 사용하고 있다면, 업그레이드하여 --mail-from 옵션을 사용할 수 있는지 확인해야 합니다. 사전에 아래처럼 발송할 내용을 파일(mailsample.txt)로 생성. from: to: subject: test mail sorry, this is test mail . 인코딩해서 발송할 경우는 헤더에 아래내용 추가해야 함. from: to: subject: test mail MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain;charset=utf-8 sorry, this is test mail. 파일을 생성했으면 ..
1. 인증여부 확인 telnet localhost 25 ehlo localhost 250-AUTH LOGIN 부분이 있는지 확인한다. 2. SMTP AUTH 사용자 인증이 되는지 확인 telnet localhost 25 helo locahost 250 SRSECU.sindo.com Hello [192.168.1.154] auth login 334 VXNlcm5hbWU6 (Base64로 인코딩한 ID)= // 뒤에 =는 Base64 의 패딩이다. (Base64로 인코딩한 Password)= base64인코딩디코딩 URL : http://www.hashemian.com/tools/base64-encode-decode.php 235 2.7.0 Authentication successful 라고 나오면 인증이 ..