1

我正在考虑允许用户通过电子邮件将文件上传到 Windows Azure 上的应用程序。有没有办法做到这一点?

4

4 回答 4

3

我会在 Azure 之外运行一个邮件服务器,然后让你的 Azure 应用程序通过 POP 检索邮件。

于 2009-09-21T03:21:53.633 回答
3

Just found out that this is possible by running your SMTP server on a worker role. You can specify an InputEndpoint on port 25 on the worker role. For more details, have a look at http://microsoftpdc.com/Sessions/SVC16

于 2010-01-17T06:04:07.807 回答
0

我们也在做同样的事情,通过电子邮件和使用 Azure 的前端上传文件。现在的问题是 Azure 不支持 smtp 服务器。

我们所做的是托管我们自己的交换服务器,并编写一个拦截器(SmtpReceiveAgent)来处理传入的消息。如果您找到其他解决方案,请告诉我。

谢谢!

于 2009-11-23T07:24:05.707 回答
0

Windows Azure 不能接收任何电子邮件,也不能在 Azure 上托管电子邮件服务器。您可以自己托管电子邮件服务器,并将收到的电子邮件的附件自动上传到 Azure。

于 2009-09-20T14:24:43.737 回答