 |
|
อยากทราบวิธีการตั้งค่า SMTP Virtual Server เพื่อให้เครื่องเราสามารถทดสอบรันสคริปต์ส่งเมล์ได้
ไม่ทราบว่าต้องทำไงคับ ใครรู้ช่วยบอกที
ผมลองทำตามนี้แล้วก็ไม่ได้อะคับ
https://www.thaicreate.com/php/forum/036864.html
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Web.Mail;
using System.Net;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Security.Cryptography;
using System.Text;
public partial class mailTo : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
MailMessage myMail = new MailMessage();
try
{
myMail.To = this.TextBox1.Text;
myMail.From = "<" + this.TextBox4.Text + ">" + this.TextBox4.Text;
myMail.Subject = this.TextBox2.Text;
myMail.BodyFormat = MailFormat.Html;
myMail.Body = this.TextBox3.Text.Replace("\n", "<br>");
SmtpMail.Send(myMail);
}
catch (Exception ex)
{
string strerr = ex.ToString();
Response.Write(strerr);
}
myMail = null;
}
}
..... ผมลองรันกับเซิร์ฟเวอร์ แล้วส่งได้คับ แต่ว่า อยากลองรับในเครื่องตัวเองดูคับ รันไงก็ไม่ได้มันชอบ error ว่า....
Code
System.Web.HttpException: The transport failed to connect to the server. ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Runtime.InteropServices.COMException (0x80040213): The transport failed to connect to the server. --- End of inner exception stack trace --- at System.RuntimeType.InvokeDispMethod(String name, BindingFlags invokeAttr, Object target, Object[] args, Boolean[] byrefModifiers, Int32 culture, String[] namedParameters) at System.RuntimeType.InvokeMember(String name, BindingFlags bindingFlags, Binder binder, Object target, Object[] providedArgs, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParams) at System.Type.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, CultureInfo culture) at System.Web.Mail.SmtpMail.LateBoundAccessHelper.CallMethod(Type type, Object obj, String methodName, Object[] args) at System.Web.Mail.SmtpMail.LateBoundAccessHelper.CallMethod(Object obj, String methodName, Object[] args) --- End of inner exception stack trace --- at System.Web.Mail.SmtpMail.LateBoundAccessHelper.CallMethod(Object obj, String methodName, Object[] args) at System.Web.Mail.SmtpMail.CdoSysHelper.Send(MailMessage message) at System.Web.Mail.SmtpMail.Send(MailMessage message) at Default6.Button1_Click(Object sender, EventArgs e) in d:\salary_Prediction\Default6.aspx.cs:line 53
Tag : .NET, Ms SQL Server 2005, JavaScript, Crystal Report, Web (ASP.NET), C#
|
ประวัติการแก้ไข 2011-02-22 00:06:08
|
 |
 |
 |
 |
Date :
2011-02-21 23:54:26 |
By :
accio |
View :
1384 |
Reply :
1 |
|
 |
 |
 |
 |
|
|
|
 |