Click here to Skip to main content
15,896,063 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionSend Mail To Yahoo! Pin
mehrdadc4828-Mar-09 2:16
mehrdadc4828-Mar-09 2:16 
Hi,
I have a page for sending an email to users.
When the target email is gmail, everything is OK, but when the email is going to be sent to a Yahoo address, it doesn't work! in this case not an error appears, not the mail is sent.
My host support says that it'd due to Yahoo.
Do you have any idea?
it's my code:
<br />
MailMessage message = new MailMessage();<br />
message.IsBodyHtml = true;<br />
message.Body = "";<br />
MailAddress mailAdrs = new MailAddress("support@myDomain.net", "support@myDomain.net");<br />
message.From = mailAdrs;<br />
message.Subject = "Reset Password Request";<br />
message.To.Add(txtEmail.Text);<br />
SmtpClient smtpC = new SmtpClient();<br />
smtpC.Host = "localhost";<br />
smtpC.Send(message);


Best wishes

AnswerRe: Send Mail To Yahoo! Pin
Nazrul28-Mar-09 4:50
Nazrul28-Mar-09 4:50 
GeneralRe: Send Mail To Yahoo! Pin
Colin Angus Mackay28-Mar-09 9:40
Colin Angus Mackay28-Mar-09 9:40 
AnswerRe: Send Mail To Yahoo! Pin
Colin Angus Mackay28-Mar-09 9:39
Colin Angus Mackay28-Mar-09 9:39 
GeneralRe: Send Mail To Yahoo! Pin
mehrdadc4828-Mar-09 19:38
mehrdadc4828-Mar-09 19:38 
AnswerRe: Send Mail To Yahoo! Pin
Yusuf28-Mar-09 11:24
Yusuf28-Mar-09 11:24 
GeneralRe: Send Mail To Yahoo! Pin
mehrdadc4828-Mar-09 19:41
mehrdadc4828-Mar-09 19:41 
GeneralRe: Send Mail To Yahoo! Pin
Yusuf29-Mar-09 8:21
Yusuf29-Mar-09 8:21 
GeneralRe: Send Mail To Yahoo! Pin
mehrdadc4829-Mar-09 17:38
mehrdadc4829-Mar-09 17:38 
QuestionAccess is denied in Processs.GetProcess(.....) Pin
.NET- India 28-Mar-09 1:30
.NET- India 28-Mar-09 1:30 
AnswerRe: Access is denied in Processs.GetProcess(.....) Pin
Colin Angus Mackay28-Mar-09 9:27
Colin Angus Mackay28-Mar-09 9:27 
QuestionAsk regarding google map controls in ASP.net with c# Pin
vidhi_2228-Mar-09 1:26
vidhi_2228-Mar-09 1:26 
AnswerRe: Ask regarding google map controls in ASP.net with c# Pin
Christian Graus28-Mar-09 12:10
protectorChristian Graus28-Mar-09 12:10 
GeneralRe: Ask regarding google map controls in ASP.net with c# Pin
vidhi_2229-Mar-09 23:17
vidhi_2229-Mar-09 23:17 
AnswerRe: Ask regarding google map controls in ASP.net with c# Pin
vinodkrebc29-Mar-09 23:32
vinodkrebc29-Mar-09 23:32 
QuestionHow can I get a computer's organizational unit from the Active Directory? Pin
Nada Adel28-Mar-09 1:26
Nada Adel28-Mar-09 1:26 
Questionsql server 2005 Pin
anup keshari28-Mar-09 1:11
anup keshari28-Mar-09 1:11 
AnswerRe: sql server 2005 Pin
Blue_Boy28-Mar-09 2:01
Blue_Boy28-Mar-09 2:01 
GeneralRe: sql server 2005 Pin
anup keshari28-Mar-09 2:10
anup keshari28-Mar-09 2:10 
GeneralRe: sql server 2005 Pin
Blue_Boy28-Mar-09 2:14
Blue_Boy28-Mar-09 2:14 
QuestionGoogle Map controls for asp.net -- Zoom Level Problem When Marker is part of Map Pin
Bhavesh Mandaliya28-Mar-09 0:35
Bhavesh Mandaliya28-Mar-09 0:35 
QuestionWorking with gridview Pin
nainakarri28-Mar-09 0:15
nainakarri28-Mar-09 0:15 
AnswerRe: Working with gridview Pin
Blue_Boy28-Mar-09 0:18
Blue_Boy28-Mar-09 0:18 
GeneralRe: Working with gridview Pin
nainakarri28-Mar-09 0:26
nainakarri28-Mar-09 0:26 
GeneralRe: Working with gridview Pin
Blue_Boy28-Mar-09 0:35
Blue_Boy28-Mar-09 0:35 

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.