Ask a Question related to ASP.NET General, Design and Development.
-
Grant #1
SMTP
I am having a problem with sending mail via system.web.mail. When I send the
file shows up in the queue folder so something is not letting it go, any
idea? No runtime error comes up or anything. I suspect it is the firewall so
what should I tell them?
Here are the codes that I am using
Dim message As New MailMessage()
With message
..BodyFormat = MailFormat.Html
..To = RecipientList
..Cc = MessageFrom
..Subject = MessageSubject
..From = MessageFrom
..Body = MessageBody
End With
SmtpMail.SmtpServer = "localhost"
SmtpMail.Send(message)
Grant Guest
-
CDO and SMTP
I want to use the CDO instead of CDONTS running via Server 2003. Within the sample code it asks for the SMTP server name. Once I've installed the... -
PHP 5 & SMTP
Anyone know if PHP 5 has built in support for communicating with SMTP servers that require a username and password? Right now, as everyone knows,... -
SMTP for ASP
Hi Group, I'm having a few problems with getting an SMTP server configured on my Windows 2000 Server web server. My web server is co-located at my... -
POP before SMTP
Hi all, a friend using Windows wanted to send mail, but he got timeout errors after editing php.ini Mail section smtp = smtp.server.com... -
How to set sendmail SMTP auth and SMTP SSL on Solaris 9 (x86)
Dear all, Can anybody tell me how to set sendmail SMTP auth and SMTP SSL on Solaris 9(x86). Thanks! -
Tom Vande Stouwe MCSD.net #2
Re: SMTP
I would suspect the firewall is not allowing the traffic out port 25, but it
also could be other things. Check the event log for SMTP entries, that might
help. Also if the SMTP is not able to get to a DNS server to resolve the MX
of the destination domain, then it will also not function. Send a message to
the mail server inside the firewall and see if that goes
==========================================
= Tom Vande Stouwe MCSD.net, MCAD.net, MCP
= 45Wallstreet.com ([url]www.45wallstreet.com[/url])
= (803)-345-5001
==========================================
= If you are not making any mistakes
..= ..you are not trying hard enough.
==========================================
"Grant" <Grant@nutrikids.com> wrote in message
news:u03xq4VTDHA.304@tk2msftngp13.phx.gbl...the>
>
>
>
> I am having a problem with sending mail via system.web.mail. When I sendso> file shows up in the queue folder so something is not letting it go, any
> idea? No runtime error comes up or anything. I suspect it is the firewall> what should I tell them?
>
>
>
> Here are the codes that I am using
>
>
>
> Dim message As New MailMessage()
> With message
> .BodyFormat = MailFormat.Html
> .To = RecipientList
> .Cc = MessageFrom
> .Subject = MessageSubject
> .From = MessageFrom
> .Body = MessageBody
> End With
> SmtpMail.SmtpServer = "localhost"
> SmtpMail.Send(message)
>
>
>
Tom Vande Stouwe MCSD.net Guest



Reply With Quote

