Windows Server 2016에서 IIS SMTP 서버를 설정하여 메일 보내기
2011 단어 WindowsServerSMTP메일 서버 구축메일IIS
설치 및 설정
메일 전송 테스트
telnet smtpserver01.contoso.com 25
helo smtpserver01.contoso.com
mail from: [email protected]
rcpt to: [email protected]
data
.
quit
[root@linuxserver01 ~]# telnet smtpserver01.contoso.com 25
Trying 10.0.1.2...
Connected to smtpserver01.contoso.com.
Escape character is '^]'.
220 smtpserver01 Microsoft ESMTP MAIL Service, Version: 10.0.14393.0 ready at Tue, 27 Nov 2018 11:03:33 +0900
helo smtpserver01.contoso.com
250 smtpserver01 Hello [10.0.1.2]
mail from: [email protected]
250 2.1.0 [email protected] OK
rcpt to: [email protected]
250 2.1.5 [email protected]
data
354 Start mail input; end with <CRLF>.<CRLF>
.
250 2.6.0 <SMTPSERVER01nHM3SOl00000006@smtpserver01> Queued mail for delivery
quit
221 2.0.0 smtpserver01 Service closing transmission channel
Connection closed by foreign host.
Reference
이 문제에 관하여(Windows Server 2016에서 IIS SMTP 서버를 설정하여 메일 보내기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/honeycom/items/01772677f4287406c4c9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)