发送简单的电子邮件ASP.NET MVC,IIS7

时间:2014-08-28 08:37:37

标签: c# asp.net-mvc email iis smtp

我尝试发送一些简单的电子邮件,例如test@blabla.com

首先,我已经在我的Localhost中尝试了它,它有效,问题是当我将它上传到我的服务器

我正在使用的服务器是Windows Server 2012 R2,带有IIS 7(不太确定版本,但我相信它是7及以上版本) 成功托管没有问题,只是发送电子邮件方法不起作用...

我已经添加了SMTP功能,设置了SMTP E-MAIL(是的,IIS 7及更高版本中没有SMTP虚拟服务器)

这是我的控制器

public ActionResult SendTestEmail()
{
    var test_address = "test@blabla.com";
    try
    {
        // Initialize WebMail helper
        WebMail.SmtpServer = "localhost";
        WebMail.SmtpPort = 25;   // Or the port you've been told to use
        WebMail.EnableSsl = false;
        WebMail.UserName = "";
        WebMail.Password = "";
        WebMail.From = "admin@testserver.com"; // random email

        WebMail.Send(to: test_address,
            subject: "Test email message",
            body: "This is a debug email message"
        );
    }
    catch (Exception ex)
    {
        ViewBag.errorMessage = ex.Message; // catch error
    }

    return View();
}

这是我的SMTP电子邮件设置: enter image description here

错误消息是:邮箱不可用。服务器响应是:5.7.1无法中继test@blabla.com(当我将电子邮件地址文本框留空时会发生这种情况,当我输入任何电子邮件格式如sample@email.com /时也会发生这种情况我的主要电子邮件)

2 个答案:

答案 0 :(得分:3)

您需要将smtp设置设置为真正的smtp服务器....

Try some smtp servers off this list如果您无法访问自己的...

这里为您提供了很多代码...... Taken from here

<强> MailModel.cs

public class MailModel
{
    public string From { get; set; }
    public string To { get; set; }
    public string Subject { get; set; }
    public string Body { get; set; }
}

SendMailerController.cs - 请注意指示smtp设置的位置

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Mail;
using System.Web;
using System.Web.Mvc; 

namespace SendMail.Controllers
{
    public class SendMailerController : Controller
    {
        // GET: /SendMailer/ 
        public ActionResult Index()
        {
            return View();
        } 

        [HttpPost]
        public ViewResult Index(SendMail.Models.MailModel _objModelMail)
        {
            if (ModelState.IsValid)
            {
                MailMessage mail = new MailMessage();
                mail.To.Add(_objModelMail.To);
                mail.From = new MailAddress(_objModelMail.From);
                mail.Subject = _objModelMail.Subject;
                string Body = _objModelMail.Body;
                mail.Body = Body;
                mail.IsBodyHtml = true;

                SmtpClient smtp = new SmtpClient();
                smtp.Host = "smtp.gmail.com";
                smtp.Port = 587;
                smtp.UseDefaultCredentials = false;
                smtp.Credentials = new System.Net.NetworkCredential
                ("username", "password");// Enter senders User name and password
                smtp.EnableSsl = false;
                smtp.Send(mail);

                return View("Index", _objModelMail);
            }
            else
            {
                return View();
            }
        }
    }
}

<强> Index.cshtml

@model SendMail.Models.MailModel
@{
    ViewBag.Title = "Index";
}

<h2>Index</h2>
<fieldset>
    <legend>Send Email</legend>
    @using (Html.BeginForm())
    {
        @Html.ValidationSummary()
        <p>From: </p>
        <p>@Html.TextBoxFor(m=>m.From)</p>
        <p>To: </p>
        <p>@Html.TextBoxFor(m=>m.To)</p>
        <p>Subject: </p>
        <p>@Html.TextBoxFor(m=>m.Subject)</p>
        <p>Body: </p>
        <p>@Html.TextAreaFor(m=>m.Body)</p>
        <input type ="submit" value ="Send" />
    }
</fieldset>

<强>更新 How to setup SMTP server on IIS7

  1. start-&gt;管理工具 - &gt;服务器管理器,转到功能,选择&#34;添加功能&#34;,勾选&#34; smtp服务器&#34; (如果尚未安装),请选择安装所需的&#34;远程服务器管理员toos&#34;

  2. 检查确认&#34;简单邮件传输协议(SMTP)&#34;服务正在运行,如果是的话,我们很高兴。

  3. start-&gt;管理工具&gt;互联网信息服务(iis)6.0

  4. 确保SMTP虚拟服务器/默认smtp服务器正在运行,如果没有,请右键单击,然后选择&#34;开始&#34;

  5. 在IIS7中,转到网站/虚拟目录,双击&#34; SMTP电子邮件&#34;,单击&#34;将电子邮件发送到SMTP服务器&#34;,检查& #34;使用localhost&#34;复选标记

答案 1 :(得分:1)

为什么不尝试将gmail用于电子邮件发件人?它易于使用。

我总是只是构建简单的方法

public void SendEmail()
{
    MailMessage mail = new MailMessage("xxx@gmail.com", "sendTo", "mailSubject", "mailBody");
    mail.From = new MailAddress("xxx@gmail.com", "nameEmail");
    mail.IsBodyHtml = true; // necessary if you're using html email

    NetworkCredential credential = new NetworkCredential("xxx@gmail.com", "xxxxx");
    SmtpClient smtp = new SmtpClient("smtp.gmail.com", 587);
    smtp.EnableSsl = true;
    smtp.UseDefaultCredentials = false;
    smtp.Credentials = credential;
    smtp.Send(mail);
}

如果您想等待发送的电子邮件,请使用async/await