Code for Sending E-Mail with System.Web.Mail?
Answers were Sorted based on User's Feedback
Answer / vamshi
using System;
using System.Web.Mail;
namespace vamshi.SendMail
{
/// <summary>
/// Test console application to demonstrate sending e-
mail.
/// </summary>
class TestMail
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
TestMail.Send("testuser@yahoo.com",
"mstrawmyer@crowechizek.com",
"Test Message Using CDOSYS",
"Hello World! This is a simple message
sent
using CDOSYS.");
}
/// <summary>
/// Send a message using the .NET wrapper for
Collaborative Data
/// Objects (CDO). This method should be used when
sending to a
/// single recipient only; otherwise, the list of
recipients
/// will be known.
/// </summary>
/// <param name="MessageFrom">Message originator</param>
/// <param name="MessageTo">Message receipent</param>
/// <param name="MessageSubject">Message subject</param>
/// <param name="MessageBody">Message body</param>
public static void Send(string MessageFrom,
string MessageTo,
string MessageSubject,
string MessageBody)
{
MailMessage message = new MailMessage();
message.From = MessageFrom;
message.To = MessageTo;
message.Subject = MessageSubject;
message.BodyFormat = MailFormat.Text;
message.Body = MessageBody;
try
{
System.Console.WriteLine("Sending outgoing
message");
SmtpMail.Send(message);
}
catch( System.Web.HttpException exHttp )
{
System.Console.WriteLine("Exception occurred:" +
exHttp.Message);
}
}
}
}
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ramesh
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Net;
using System.Net.Mail;
public partial class email : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
NetworkCredential mylogin = new
NetworkCredential("yraddress@gmail.com","yourpassword");
MailMessage msg = new MailMessage();
msg.From = new MailAddress("yraddress@gmail.com@gmail.com");
msg.To.Add(new MailAddress(TextBox1.Text));
// in Textbox1 you will put receiver gmail address,as this
example work with gmail only.
msg.Subject = TextBox2.Text;
// subject pass through textbox2
msg.SubjectEncoding = System.Text.Encoding.UTF8;
msg.Body = TextBox3.Text;
//msgbody pass through textbox3
msg.Priority = MailPriority.High;
msg.IsBodyHtml = true;
SmtpClient client = new
SmtpClient("smtp.gmail.com");
client.Port = 587;
client.Host = "smtp.gmail.com";
client.EnableSsl = true;
client.UseDefaultCredentials = false;
client.Credentials = mylogin;
client.Send(msg);
}
Is This Answer Correct ? | 0 Yes | 0 No |
How to Export Data to Excel?
working with fileUpload ?
How to Create Scrollable Micro Windows?
how to upload a photo? i need to use it in a matrimonial applicaton...
ArrayList declaration in .net
How we use ajax in asp.net through javaScript. Please givee me an example.
How to send e-mail from an ASP.NET application?
16 Answers DataPoint, Infosys, Persistent, Radar, TCS, Wipro,
How to get the row index on checking a Checkbox in a ListView
Listview design in .net
how the value of label is printed through a button in asp.net web application
Code for Using Keyboard Events?
Code for Communicating over Sockets?