将电子邮件内容发送到数据库

发布于 2024-10-06 08:18:48 字数 145 浏览 3 评论 0原文

我有一个带有 CRM 的网站,管理员可以发送消息,这些消息将到达客户端页面和电子邮件,

我们的客户在我们的服务器中拥有电子邮件地址(邮件启用程序),

如果他的用户决定回复我们将丢失的电子邮件系统给了他回复。 是否可以将电子邮件的内容发送给DB?

I have a website with CRM and the admin can send messages that will get to the client page and to the email

our client have email address in our server (mail-enable program)

if his user will decide to reply for the email we will loose his reply from the system.
is it possible to get the content of an email to DB?

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

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

发布评论

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

评论(1

ゃ懵逼小萝莉 2024-10-13 08:18:48

就复杂性而言,发送和接收电子邮件是非常不同的任务。

要发送,您只需使用收件人、发件人、主题编写电子邮件文本,然后将其发送到简单的 smtp 服务器(如 iis smtp)。就是这样。

当您收到电子邮件时,您必须知道如何解析电子邮件以及将其归档到哪里。它仍然是可能的,例如您可以使用相同的 iis smtp 服务器以编程方式接收电子邮件:
http://msdn.microsoft.com/en-us /library/aa142572%28EXCHG.65%29.aspx
您只需确保发送电子邮件所用的所有“发件人:”地址均由同一服务器处理。这意味着您必须更改 MX 记录以指向您的 IIS 服务器。我不确定你的设置允许这样做。

sending and receiving email are very different tasks, as far as complexity goes.

to send, you just make the text of the email with to, from, subject, and send it to simple smtp server (like iis smtp). that's it.

when you receive, you have to know how to parse email, and where to file it. it's still possible, for example you can use same iis smtp server to programmaticaly receive emails:
http://msdn.microsoft.com/en-us/library/aa142572%28EXCHG.65%29.aspx
you just have to make sure that all "From:" addresses you send email with are handled by that same server. Meaning you have to change MX record to point at your IIS server. I am not sure your setup allows that.

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