博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Windows Azure Cloud Service (29) 在Windows Azure发送邮件(下)
阅读量:5267 次
发布时间:2019-06-14

本文共 4507 字,大约阅读时间需要 15 分钟。

  《》

 

  前2章我们已经介绍了Windows Azure发送邮件的两种方法,分别是使用on-premise的Email Forward Service和Exchange Server。

  现在我们介绍第三种方法:使用第三方SMTP服务

  源代码您可以在下载,有三点我们需要了解: 

  1. 在Windows Azure应用程序里,我们可以使用第三方服务()来实现发送邮件的功能。
  2. 我们可以使用worker role的input endpoint (终结点),通过端口号25来监听SMTP流量
  3. 我们可以使用CDN endpoit,自定义域名来缓存Blob中的内容。

 

背景介绍:

  在Windows Azure平台上,发送邮件的功能要比你想象的更复杂。

  发送电子邮件对于Windows Azure这样的云平台提出了挑战,因为您没有一个专用的IP地址。那些发送垃圾邮件的人,非常有可能使用Windows Azure来发送垃圾邮件。一旦出现这样的情况,垃圾邮件黑名单会迅速将Windows Azure数据中心的IP地址范围标记为垃圾邮件的来源。这意味着您的合法电子邮件将无法正常发送。  

  对于这些挑战,最佳的解决方案是不从Windows Azure发送电子邮件。而是通过那些有严格的反垃圾邮件规则和专用IP地址的第三方SMTP服务(比如或者)。

  请注意:接收电子邮件是另外一个故事。只要人们愿意发送电子邮件到您的域名,您都可以在Windows Azure接收,只要通过端口号25监听SMTP流量。

 

使用第三方服务发送电子邮件

  我们首先要做的事情是在注册一个免费的账户。免费账户允许我们每天发送200封电子邮件,但是他不给我们开放一些高级功能。我们建议您:如果你很关于您的邮件发送过程,请至少升级到银牌(Silver)用户,以保证更好的邮件发送质量。

  一旦我们完成了快速注册,我需要记下所有的细节内容,以便我在配置文件里做添加。

  实际上发送电子是非常容易的,我们可以使用System.Net.Mail这个命名空间。下面的代码是为EmailTheInternet.com发送电子邮件回复

var reply = new MailMessage(RoleEnvironment.GetConfigurationSettingValue("EmailAddress"),    msg.FromAddress){    Subject = msg.Subject.StartsWith("RE:", StringComparison.InvariantCultureIgnoreCase)                                            ? msg.Subject : string.Format("RE: " + msg.Subject),    Body = body,    IsBodyHtml = msg.HasHtmlBody // send HTML if we got HTML};if (!reply.IsBodyHtml) reply.BodyEncoding = Encoding.UTF8;// make it a proper replyreply.Headers["References"] = msg.MessageID;reply.Headers["In-Reply-To"] = msg.MessageID;// use our SMTP server, port, username, and password to send the mail(new SmtpClient(RoleEnvironment.GetConfigurationSettingValue("SmtpServer"),    int.Parse(RoleEnvironment.GetConfigurationSettingValue("SmtpPort"))){    Credentials = new NetworkCredential(RoleEnvironment.GetConfigurationSettingValue("SmtpUsername"),        RoleEnvironment.GetConfigurationSettingValue("SmtpPassword"))}).Send(reply);

  请注意:我用的是的免费帐号,这意味着我每天只能发有限数量的邮件,我们没有一个固定IP地址和.正因为如此,我的邮件可能无法全部通过垃圾邮件过滤器,一些电子邮件客户端将显示我通过发送的邮件为"代表 "。这是因为我还没有为这些服务付费(我使用的是免费帐号),不是因为这种方法的缺陷。

 

使用Worker Role接收邮件

  我很惊讶,在C#中找到为接收邮件功能的易用、免费的类库是非常困难的。我参考了,然后添加了,以处理复杂的、有MIME编码和附件任务。

  您可以阅读代码的细节,但是我基本上做两件事情:

  1. 在OnStart()中执行TcpListener,开始侦听相应的端口。
  2. 在Run()开始循环,处理接收来的每个邮件并保存到Blob中,然后发送回复。

  下面的代码初始化SMTP,然后启动TcpListener(在Onstart()调用)。

listener = new TcpListener(IPAddress.Any,    RoleEnvironment.CurrentRoleInstance.InstanceEndpoints["SmtpIn"].IPEndpoint.Port);processor = new SMTPProcessor(RoleEnvironment.GetConfigurationSettingValue("DomainName"),    new RecipientFilter(), new MessageSpool());listener.Start();

  请注意:我使用service runtime API来确定正确的端口。

  下面是简单的异步处理传入的TCP连接(在Run()调用)

var mutex = new ManualResetEvent(false);while (true){    mutex.Reset();    listener.BeginAcceptSocket((ar) =>        {            mutex.Set();            processor.ProcessConnection(listener.EndAcceptSocket(ar));        }, null);    mutex.WaitOne();}

最后的代码是处理传入的电子邮件

// make a container, with public access to blobsvar id = Guid.NewGuid().ToString().Replace("-", null);var container = account.CreateCloudBlobClient().GetContainerReference(id);container.Create();container.SetPermissions(new BlobContainerPermissions() { PublicAccess=BlobContainerPublicAccessType.Blob });// parse the messagevar msg = new SharpMessage(new MemoryStream(Encoding.ASCII.GetBytes(message.Data)),    SharpDecodeOptions.AllowAttachments | SharpDecodeOptions.AllowHtml | SharpDecodeOptions.DecodeTnef);// create a permalink-style name for the blobvar permalink = Regex.Replace(Regex.Replace(msg.Subject.ToLower(), @"[^a-z0-9]", "-"), "--+", "-").Trim('-');if (string.IsNullOrEmpty(permalink)){    // in case there's no subject    permalink = "message";}var bodyBlob = container.GetBlobReference(permalink);// set the CDN to cache the object for 2 hoursbodyBlob.Properties.CacheControl = "max-age=7200";// replaces references to attachments with the URL of where we'll put themmsg.SetUrlBase(Utility.GetCdnUrlForUri(bodyBlob.Uri) + "/[Name]");// save each attachment in a blob, setting the appropriate content typeforeach (SharpAttachment attachment in msg.Attachments){    var blob = container.GetBlobReference(permalink + "/" + attachment.Name);    blob.Properties.ContentType = attachment.MimeTopLevelMediaType + "/" + attachment.MimeMediaSubType;    blob.Properties.CacheControl = "max-age=7200";    attachment.Stream.Position = 0;    blob.UploadFromStream(attachment.Stream);}// add the footer and save the body to the blobSaveBody(msg, bodyBlob, message, container, permalink);

 

 

 

 

 

参考资料

转载于:https://www.cnblogs.com/threestone/archive/2012/06/26/2563849.html

你可能感兴趣的文章
2015/8/4 告别飞思卡尔,抛下包袱上路
查看>>
软件开发与模型
查看>>
161017、SQL必备知识点
查看>>
kill新号专题
查看>>
MVC学习系列——Model验证扩展
查看>>
mysqladmin 修改和 初始化密码
查看>>
字符串
查看>>
vue2.x directive - 限制input只能输入正整数
查看>>
实现MyLinkedList类深入理解LinkedList
查看>>
自定义返回模型
查看>>
C#.NET 大型通用信息化系统集成快速开发平台 4.1 版本 - 客户端多网络支持
查看>>
HDU 4122
查看>>
Suite3.4.7和Keil u3自带fx2.h、fx2regs.h文件的异同
查看>>
打飞机游戏【来源于Crossin的编程教室 http://chuansong.me/account/crossincode 】
查看>>
[LeetCode] Merge Intervals
查看>>
【翻译自mos文章】当点击完 finishbutton后,dbca 或者dbua hang住
查看>>
Linux编程简介——gcc
查看>>
2019年春季学期第四周作业
查看>>
MVC4.0 利用IActionFilter实现简单的后台操作日志功能
查看>>
windows下mongodb安装与使用
查看>>