我做了一個簡單的程序來發送電子郵件,但它沒有發送它們,並給我一個例外。 下面的代碼: using System.Net;
using System.Net.Mail;
public class test{
public static void Main()
{
SmtpClient client = new SmtpClient();
client
我正在我的Visual Studio中的asp.net mvc web應用程序工作。沒有我的Web應用程序基本上是公共用戶的網站(所以我沒有使用https)。現在我的網站提供了一個正常的與我們聯繫表單,和下面的郵政聯繫的操作方法: - [HttpPost]
public ActionResult Contact(Contact c)
{
var mail =
我想用ASP.NET中的SMTPClient使用GoDaddy郵件服務器發送郵件,我的代碼如下,我嘗試了GoDaddy中的所有端口,但是我無法發送郵件 我的代碼: try
{
//Mail Message
MailMessage mM = new MailMessage();
//Mail Address
mM.From = new Ma
System.Net.Mail.SmtpException:
Failure sending mail. --->
System.Net.WebException:
Unable to connect to the remote server --->
System.Net.Sockets.SocketException:
No connection could be made beca
我想要一個程序,需要一個字符串,並將其發送到電子郵件給gmail,然後將其發送到手機作爲文本消息。 我很確定我所有的代碼都很好,但是當我指定它時,它總是說「必須指定一個來自地址的地址」。有人可以指出錯誤,或只是給我修改代碼? using System;
using System.Collections.Generic;
using System.Linq;
using System.Text