.net Mail

/// <summary>
        /// 发送邮件
        /// </summary>
        /// <param name="inEmail">邮件地址</param>
        /// <param name="inSubject">邮件标题</param>
        /// <param name="inBody">邮件内容</param>
        /// <returns></returns>
        public static bool SendMail(string inEmail, string inSubject, string inBody)
        {
            try
            {
                // 初始化
                //获取或设置要用于发送电子邮件的 SMTP 中继邮件服务器的名称。
                WebMail.SmtpServer = ConfigurationManager.AppSettings["SmtpServer"];
                //发送端口
                WebMail.SmtpPort = Convert.ToInt32(ConfigurationManager.AppSettings["SmtpPort"]);
                //是否启用 SSL GMAIL 需要 而其他都不需要 具体看你在邮箱中的配置
                WebMail.EnableSsl = false;
                //账号名
                WebMail.UserName = ConfigurationManager.AppSettings["smtpUser"];
                //邮箱名
                WebMail.From = ConfigurationManager.AppSettings["adminEmail"];
                //密码
                WebMail.Password = ConfigurationManager.AppSettings["smtpPass"];
                //是否使用默认配置
                WebMail.SmtpUseDefaultCredentials = true;


                WebMail.Send(to: inEmail,//指定地址
                    subject: inSubject,//标题
                    body: inBody,//内容
                    //cc: "抄送",
                    //filesToAttach: null,
                    isBodyHtml: true
                    //additionalHeaders: new string[] { "aaa", "bbb" }
                  );

                return true;
            }
            catch (Exception ex)
            {
                return false;
            }

你可能感兴趣的:(mail,.Net4.0,webmail)