如何使用 C# 从域读取任何电子邮件帐户?

发布于 2024-09-05 23:26:53 字数 274 浏览 4 评论 0原文

我想这是两个紧密相连的问题。

相关问题讨论了如何使用pop3读取和解析电子邮件。我需要能够做到这一点,但是,我希望它能够与我需要的任何电子邮件地址一起使用。

我试图允许用户通过将内容通过电子邮件发送到唯一的电子邮件地址来提交内容,该地址将自动知道该内容应与哪个帐户关联。

有没有一种好方法可以在 C# 中动态创建这些电子邮件地址并检查这些电子邮件帐户以便提交内容?

或者,有没有办法创建一个“通配符”电子邮件帐户,将所有电子邮件发送到该域,并允许我查看收件人地址是什么?

I guess this is sort of two questions that are tied together.

Related questions have discussed how to read and parse email using pop3. I need to be able to do this, however, I want this to be able to work with any email address I need.

I am trying to allow users to submit content by emailing it to a unique email address, which will automatically know to which account the content should be associated.

Is there a good way to create these email addresses on the fly in C# and check these email accounts so for content submissions?

Alternatively is there a way to make a "wildcard" email account which gets all of the email sent to the domain and allows me to see what the to address was?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

赤濁 2024-09-12 23:26:53

大多数电子邮件服务器允许您将所有无法送达的电子邮件路由到特定邮箱(尽管如何执行此操作的详细信息取决于邮件服务器)。从那里,您应该能够从邮件的 To 标头获取发送到的地址。

Most email servers will allow you to route all undeliverable email to a specific mailbox (though the details on how to do it will depend on the mail server). From there you should be able to get the address it was sent to from the To header of the message.

他不在意 2024-09-12 23:26:53

更好的方法是完全跳过收件箱/POP 检查,让 MTA(消息传输代理)将传入电子邮件直接“发送”到您的应用程序。

以下是 PHP 的设置示例: http://www.evolt.org/incoming_mail_and_php

A much better method is to skip the inbox/POP-checking altogether and have your MTA (Message transfer agent) "send" incoming emails straight to your application.

Here's an example setup with PHP: http://www.evolt.org/incoming_mail_and_php

羁〃客ぐ 2024-09-12 23:26:53

或者有没有办法制作
“通配符”电子邮件帐户获取
发送到该域的所有电子邮件
让我看到要做什么
地址是?

是的,它被称为catch all:

http://en.wikipedia.org/wiki/Catch-all< /a>

具体如何操作取决于您的域名托管服务商/您用来处理电子邮件的人员。

Alternatively is there a way to make a
"wildcard" email account which gets
all of the email sent to the domain
and allows me to see what the to
address was?

Yes its called catch all:

http://en.wikipedia.org/wiki/Catch-all

It depends on your domain host/who you are using to handle your email on the specifics of how to do it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文