Ask a Question related to ASP.NET General, Design and Development.
-
James J. Foster #1
Re: smtpMail Class
Look in your mailroot (eg. c:\inetpub\mailroot\) directory, and the various
subdirectories, for any messages. If messages are in the Badmail folder, you
can open them for more descriptive information. Depending on where you are
(internal network vs. internet), your needs will differ. Are you on a
corporate network, or at home connected through an ISP?
--
James J. Foster, DotNetCoders
[url]http://www.dotnetcoders.com[/url]
"Renato Giron" <renatodiron@earthlink.net> wrote in message
news:%23zZL7JwPDHA.2852@tk2msftngp13.phx.gbl...behing> I am trying to use an aspx page to send email using the smtpMail class and
> my smtp server . When I click send but when I check my inbox no messages
> appear. The page doesn't give any errors. I doble checked and my code> seems find:
>
> Dim objmail As New Web.Mail.MailMessage()
>
> objmail.From = "renato@myserver.com"
>
> objmail.To = "renato@myserver.com"
>
> objmail.Subject = "message from me"
>
> objmail.Body = "body text"
>
> objmail.BodyFormat = Web.Mail.MailFormat.Html
>
> Web.Mail.SmtpMail.SmtpServer = "localhost"
>
> Web.Mail.SmtpMail.Send(objmail)
>
> Can some body please tell me what additional steps I might need to take?
>
>
James J. Foster Guest
-
SmtpMail works for logged on user but not asp.net on Windows XP
Hello, I am sending an email using System.Web.Mail.SmtpMail to send mail. This works fine when I am debugging in VS.Net, but fails when I am... -
JMail.SMTPMail and utf8
Hello, Does the JMail.SMTPMail supports sending arabic emails? If so, please tell me how to make it, cause i got Rabish when trying it. thanks -
apsnet_wp.exe non-default identity vs. System.Web.Mail.SmtpMail
Perhaps compare the group and security restrictions on the account you are trying to use. Maybe it is not allowed to run as a service (or something... -
where to get jMail.SMTPMail
> where can I find jMail.SMTPMail, www.dimac.net JMail can use any SMTP server your server can see, so assuming you can edit your DTS... -
SMTPMAIL on Windows Server 2003
We just moved an ASP.Net app to a Windows 2003 Server, and the SMTPMail fails now with the following message: ... -
Renato Giron #2
smtpMail Class
I am trying to use an aspx page to send email using the smtpMail class and
my smtp server . When I click send but when I check my inbox no messages
appear. The page doesn't give any errors. I doble checked and my code behing
seems find:
Dim objmail As New Web.Mail.MailMessage()
objmail.From = "renato@myserver.com"
objmail.To = "renato@myserver.com"
objmail.Subject = "message from me"
objmail.Body = "body text"
objmail.BodyFormat = Web.Mail.MailFormat.Html
Web.Mail.SmtpMail.SmtpServer = "localhost"
Web.Mail.SmtpMail.Send(objmail)
Can some body please tell me what additional steps I might need to take?
Renato Giron Guest
-
Renato Giron #3
Re: smtpMail Class
at home connected to an ISP usind DSL
thanks for your feedback
"James J. Foster" <james@dotnetcoders.com> wrote in message
news:ufRNQUwPDHA.2476@TK2MSFTNGP10.phx.gbl...various> Look in your mailroot (eg. c:\inetpub\mailroot\) directory, and theyou> subdirectories, for any messages. If messages are in the Badmail folder,and> can open them for more descriptive information. Depending on where you are
> (internal network vs. internet), your needs will differ. Are you on a
> corporate network, or at home connected through an ISP?
>
> --
> James J. Foster, DotNetCoders
> [url]http://www.dotnetcoders.com[/url]
>
>
> "Renato Giron" <renatodiron@earthlink.net> wrote in message
> news:%23zZL7JwPDHA.2852@tk2msftngp13.phx.gbl...> > I am trying to use an aspx page to send email using the smtpMail class> behing> > my smtp server . When I click send but when I check my inbox no messages
> > appear. The page doesn't give any errors. I doble checked and my code>> > seems find:
> >
> > Dim objmail As New Web.Mail.MailMessage()
> >
> > objmail.From = "renato@myserver.com"
> >
> > objmail.To = "renato@myserver.com"
> >
> > objmail.Subject = "message from me"
> >
> > objmail.Body = "body text"
> >
> > objmail.BodyFormat = Web.Mail.MailFormat.Html
> >
> > Web.Mail.SmtpMail.SmtpServer = "localhost"
> >
> > Web.Mail.SmtpMail.Send(objmail)
> >
> > Can some body please tell me what additional steps I might need to take?
> >
> >
>
Renato Giron Guest
-
Renato Giron #4
Re: smtpMail Class
My messages are in the Queue folder, Don't know why.
"James J. Foster" <james@dotnetcoders.com> wrote in message
news:ufRNQUwPDHA.2476@TK2MSFTNGP10.phx.gbl...various> Look in your mailroot (eg. c:\inetpub\mailroot\) directory, and theyou> subdirectories, for any messages. If messages are in the Badmail folder,and> can open them for more descriptive information. Depending on where you are
> (internal network vs. internet), your needs will differ. Are you on a
> corporate network, or at home connected through an ISP?
>
> --
> James J. Foster, DotNetCoders
> [url]http://www.dotnetcoders.com[/url]
>
>
> "Renato Giron" <renatodiron@earthlink.net> wrote in message
> news:%23zZL7JwPDHA.2852@tk2msftngp13.phx.gbl...> > I am trying to use an aspx page to send email using the smtpMail class> behing> > my smtp server . When I click send but when I check my inbox no messages
> > appear. The page doesn't give any errors. I doble checked and my code>> > seems find:
> >
> > Dim objmail As New Web.Mail.MailMessage()
> >
> > objmail.From = "renato@myserver.com"
> >
> > objmail.To = "renato@myserver.com"
> >
> > objmail.Subject = "message from me"
> >
> > objmail.Body = "body text"
> >
> > objmail.BodyFormat = Web.Mail.MailFormat.Html
> >
> > Web.Mail.SmtpMail.SmtpServer = "localhost"
> >
> > Web.Mail.SmtpMail.Send(objmail)
> >
> > Can some body please tell me what additional steps I might need to take?
> >
> >
>
Renato Giron Guest



Reply With Quote

