基本信息
源码名称:无需用户名和密码 直接发送邮件至对方邮箱 测试通过版,附完整源码下载
源码大小:0.03M
文件格式:.zip
开发语言:C#
更新时间:2013-07-28
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 10 元×
微信扫码支付:10 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
直邮项目源码,无需 用户名密码 直达目标邮箱 ,仅供参考学习交流使用,请勿非法用途
直邮项目源码,无需 用户名密码 直达目标邮箱 ,仅供参考学习交流使用,请勿非法用途
using System; using System.Collections.Generic; using System.Text; using System.Net; using System.Net.Mail; namespace QiHe.CodeLib.Net { public class EmailSender { /// <summary> /// Default SMTP Port. /// </summary> public static int SmtpPort = 25; public static bool Send(string from, string to, string subject, string body) { string domainName = GetDomainName(to); IPAddress[] servers = GetMailExchangeServer(domainName); foreach (IPAddress server in servers) { try { SmtpClient client = new SmtpClient(server.ToString(), SmtpPort); client.Send(from, to, subject, body); return true; } catch { continue; } } return false; } public static bool Send(MailMessage mailMessage) { string domainName = GetDomainName(mailMessage.To[0].Address); IPAddress[] servers = GetMailExchangeServer(domainName); foreach (IPAddress server in servers) { try { SmtpClient client = new SmtpClient(server.ToString(), SmtpPort); client.Send(mailMessage); return true; } catch { continue; } } return false; } public static string GetDomainName(string emailAddress) { int atIndex = emailAddress.IndexOf('@'); if (atIndex == -1) { throw new ArgumentException("Not a valid email address", "emailAddress"); } if (emailAddress.IndexOf('<') > -1 && emailAddress.IndexOf('>') > -1) { return emailAddress.Substring(atIndex 1, emailAddress.IndexOf('>') - atIndex); } else { return emailAddress.Substring(atIndex 1); } } public static IPAddress[] GetMailExchangeServer(string domainName) { IPHostEntry hostEntry = DomainNameUtil.GetIPHostEntryForMailExchange(domainName); if (hostEntry.AddressList.Length > 0) { return hostEntry.AddressList; } else if (hostEntry.Aliases.Length > 0) { return System.Net.Dns.GetHostAddresses(hostEntry.Aliases[0]); } else { return null; } } } }