Click here to Skip to main content
16,016,777 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Sending email from asp.net page User never receive sended email Pin
Rameez Raja21-Dec-08 1:33
Rameez Raja21-Dec-08 1:33 
GeneralRe: Sending email from asp.net page User never receive sended email Pin
Abhijit Jana21-Dec-08 2:00
professionalAbhijit Jana21-Dec-08 2:00 
GeneralRe: Sending email from asp.net page User never receive sended email Pin
Rameez Raja21-Dec-08 2:13
Rameez Raja21-Dec-08 2:13 
GeneralRe: Sending email from asp.net page User never receive sended email Pin
Not Active21-Dec-08 2:51
mentorNot Active21-Dec-08 2:51 
GeneralRe: Sending email from asp.net page User never receive sended email Pin
Abhijit Jana21-Dec-08 17:21
professionalAbhijit Jana21-Dec-08 17:21 
GeneralRe: Sending email from asp.net page User never receive sended email Pin
Rameez Raja21-Dec-08 18:04
Rameez Raja21-Dec-08 18:04 
AnswerRe: Sending email from asp.net page User never receive sended email Pin
Abhijit Jana21-Dec-08 19:00
professionalAbhijit Jana21-Dec-08 19:00 
AnswerRe: Sending email from asp.net page User never receive sended email Pin
Parwej Ahamad21-Dec-08 5:37
professionalParwej Ahamad21-Dec-08 5:37 
First of all I would like to say, you should get some knowledge about SMTP before going to implement Email functionality.

For your information... for testing purpose you can use gamil account for sending the mail see the below code-

MailMessage MyMailMessage=new  MailMessage();
MyMailMessage.From = new MailAddress("g.parwez@gmail.com");
MyMailMessage.To.Add("g.parwez@gmail.com");
MyMailMessage.Subject = "Parwej Testing !!!";
MyMailMessage.Body = "This is the test text for Parwej Ahamad";
SmtpClient SMTPServer=new SmtpClient("smtp.gmail.com");
SMTPServer.Port = 587;
SMTPServer.Credentials =new System.Net.NetworkCredential("yourgmaid", "yourgmailpassword");
SMTPServer.EnableSsl = true;
SMTPServer.Send(MyMailMessage);


Parwej Ahamad



QuestionDeployment Troubles Pin
Muhammad Gouda21-Dec-08 0:04
Muhammad Gouda21-Dec-08 0:04 
AnswerRe: Deployment Troubles Pin
Abhijit Jana21-Dec-08 1:26
professionalAbhijit Jana21-Dec-08 1:26 
QuestionHow can I make Help file for my web application in ASP.NET n C#? Pin
Ravi Munde20-Dec-08 22:31
Ravi Munde20-Dec-08 22:31 
AnswerRe: How can I make Help file for my web application in ASP.NET n C#? Pin
Christian Graus20-Dec-08 22:55
protectorChristian Graus20-Dec-08 22:55 
AnswerRe: How can I make Help file for my web application in ASP.NET n C#? Pin
Abhijit Jana21-Dec-08 1:30
professionalAbhijit Jana21-Dec-08 1:30 
AnswerRe: How can I make Help file for my web application in ASP.NET n C#? Pin
Not Active21-Dec-08 2:58
mentorNot Active21-Dec-08 2:58 
QuestionSettings a webusercontrol object's property Pin
TheFM23420-Dec-08 21:27
TheFM23420-Dec-08 21:27 
AnswerRe: Settings a webusercontrol object's property Pin
Christian Graus20-Dec-08 22:56
protectorChristian Graus20-Dec-08 22:56 
QuestionHow i can undrestand a client user is exited from Web Application? Pin
Saba0220-Dec-08 21:21
Saba0220-Dec-08 21:21 
AnswerRe: How i can undrestand a client user is exited from Web Application? Pin
Christian Graus20-Dec-08 22:59
protectorChristian Graus20-Dec-08 22:59 
AnswerRe: How i can undrestand a client user is exited from Web Application? Pin
Muhammad Gouda20-Dec-08 23:01
Muhammad Gouda20-Dec-08 23:01 
GeneralRe: How i can undrestand a client user is exited from Web Application? Pin
Christian Graus20-Dec-08 23:05
protectorChristian Graus20-Dec-08 23:05 
AnswerRe: How i can undrestand a client user is exited from Web Application? Pin
StianSandberg21-Dec-08 16:47
StianSandberg21-Dec-08 16:47 
QuestionRetrieve multiple Eval in textbox. Pin
kavitha_blueindia20-Dec-08 6:07
kavitha_blueindia20-Dec-08 6:07 
AnswerRe: Retrieve multiple Eval in textbox. Pin
Christian Graus20-Dec-08 10:09
protectorChristian Graus20-Dec-08 10:09 
AnswerRe: Retrieve multiple Eval in textbox. Pin
AlexeiXX320-Dec-08 16:29
AlexeiXX320-Dec-08 16:29 
GeneralRe: Retrieve multiple Eval in textbox. Pin
kavitha_blueindia21-Dec-08 5:27
kavitha_blueindia21-Dec-08 5:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.