gpt4 book ai didi

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

转载 作者:太空狗 更新时间:2023-10-30 01:18:49 25 4
gpt4 key购买 nike

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

首先,我已经在我的 Localhost 上试过了,它成功了,问题是当我将它上传到我的服务器时

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

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

这是我的 Controller

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/我的主要电子邮件)

最佳答案

您需要将 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. 开始->管理工具->服务器管理器,转到功能,选择“添加功能”,勾选“smtp 服务器”(如果尚未安装),选择安装所需的“远程服务器管理工​​具” "

  2. 检查以确认“简单邮件传输协议(protocol) (SMTP)”服务正在运行,如果是,我们就可以开始了。

  3. 开始->管理工具>internet 信息服务(iis) 6.0

  4. 确保 SMTP 虚拟服务器/默认 smtp 服务器正在运行,如果没有,请右键单击,然后选择“启动”

  5. 在 IIS7 中,转到网站/虚拟目录,双击“SMTP 电子邮件”,单击“将电子邮件传送到 SMTP 服务器”,选中“使用本地主机”复选标记

    <

关于c# - 发送简单的电子邮件 ASP.NET MVC, IIS7,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25544356/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com