gpt4 book ai didi

c# - 从 SmtpClient 获取 SMTP 服务器问候消息

转载 作者:太空宇宙 更新时间:2023-11-03 11:13:04 25 4
gpt4 key购买 nike

有什么方法可以使用 .NET SmtpClient 获取 SMTP 服务器问候消息

问候消息是 SMTP 服务器响应的第一行:

S: 220 smtp.example.com ESMTP Postfix    <----- I need this line
C: HELO relay.example.org
S: 250 Hello relay.example.org, I am glad to meet you
C: MAIL FROM:<bob@example.org>
S: 250 Ok
C: RCPT TO:<alice@example.com>
S: 250 Ok
C: RCPT TO:<theboss@example.com>
S: 250 Ok
C: DATA
S: 354 End data with <CR><LF>.<CR><LF>
C: From: "Bob Example" <bob@example.org>
C: To: "Alice Example" <alice@example.com>
C: Cc: theboss@example.com
C: Date: Tue, 15 January 2008 16:02:43 -0500
C: Subject: Test message
C:
C: Hello Alice.
C: This is a test message with 5 header fields and 4 lines in the message body.
C: Your friend,
C: Bob
C: .
S: 250 Ok: queued as 12345
C: QUIT
S: 221 Bye
{The server closes the connection}

提前致谢!

沃特

最佳答案

SmtpClient 旨在抽象出诸如此类的 SMTP 细节。

你最好打开一个socket连接到 SMTP 服务器和 reading的回应。

关于c# - 从 SmtpClient 获取 SMTP 服务器问候消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13400621/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com