Ask a Question related to ASP.NET General, Design and Development.
-
Carl Howarth #1
Email query
Hi there,
I am trying to send emails automatically from a system using the following
code - I am wanting to use the hosting machine's own SMTP facility, which I
am sure has worked in the past!
Dim obMail As New MailMessage
With obMail
..To = [email]email@email.com[/email]
..From = [email]email@email.com[/email]
..Subject = "Clientserve Brief Created (" & Session("ClientName") & ")."
..BodyFormat = MailFormat.Html
..Body = Session("RealName") & " from " & Session("ClientName") & " has
submitted a brief using Clientserve.<BR><BR>Please log in to <A
HREF='http://www.website.com/cas'>CAS</a> to view the relevant
details.<BR><BR>Regards,<BR><BR>Clientserve"
..Priority = MailPriority.Normal
End With
SmtpMail.Send(obMail)
It goes through OK and doesn't generate an error but the email never
arrives!
Any suggestions?
Many thanks, Carl
Carl Howarth Guest
-
Connenting email form to an email account
:( I am at a mental brickwall. I created a form, created two text fields and a "log in" button. What I want to have happen is when a person goes to... -
How to pull Query Results & put into a email to user
I know this is simple for most, but it has been KILLING me for about 2 weeks. I need a process to send users their "forgotten" login information. I... -
Mailto: with query for email list not working
I am managing a website for a membership-based organization and one of the things I am doing for them is giving them an easy way to email to the... -
ASP Email - CDONTS - AttachFile - Getting it embeded in the email
I am unable to get my file attachment in the email => Here is what my code looks like - which is very simple from the documentation that I have... -
Email notification query (many to many) :: multiple directions
I could sure use some conceptualization and query help with a Page Watch System I am building in Access 2000 and Asp. I need to cycle through... -
William F. Robertson, Jr. #2
Re: Email query
Mmmm...usually I have to turn open it in notepad, and just look for the
readable text. Usually it has something to do with the relaying or mail
outside the domain. (Atleast in mycases.)
Maybe a start for you.
[url]http://support.microsoft.com/default.aspx?scid=kb;en-us;303701[/url]
bill
"Carl Howarth" <carl.howarth@m-s-solutions.co.uk> wrote in message
news:e#K8EyRVDHA.1744@TK2MSFTNGP12.phx.gbl...there.> Thanks,
>
> There are files in the 'Badmail' directory in the folder, but how do I
> translate them to English?
>
> Many thanks, Carl
>
>
> "William F. Robertson, Jr." <wfrobertson@kpmg.com> wrote in message
> news:OM3W9sRVDHA.2364@TK2MSFTNGP09.phx.gbl...> > Look at the server: "inetpub/mailroot" and look for the message in")."> following> > There should be an error message generated and stored only there.
> >
> > bill
> >
> >
> > "Carl Howarth" <carl.howarth@m-s-solutions.co.uk> wrote in message
> > news:uzfldpRVDHA.532@TK2MSFTNGP09.phx.gbl...> > > Hi there,
> > >
> > > I am trying to send emails automatically from a system using the> which> > > code - I am wanting to use the hosting machine's own SMTP facility,> > I> > > am sure has worked in the past!
> > >
> > > Dim obMail As New MailMessage
> > > With obMail
> > >
> > > .To = [email]email@email.com[/email]
> > >
> > > .From = [email]email@email.com[/email]
> > >
> > > .Subject = "Clientserve Brief Created (" & Session("ClientName") &>> >> > >
> > > .BodyFormat = MailFormat.Html
> > >
> > > .Body = Session("RealName") & " from " & Session("ClientName") & " has
> > > submitted a brief using Clientserve.<BR><BR>Please log in to <A
> > > HREF='http://www.website.com/cas'>CAS</a> to view the relevant
> > > details.<BR><BR>Regards,<BR><BR>Clientserve"
> > >
> > > .Priority = MailPriority.Normal
> > >
> > > End With
> > >
> > > SmtpMail.Send(obMail)
> > >
> > > It goes through OK and doesn't generate an error but the email never
> > > arrives!
> > >
> > >
> > >
> > > Any suggestions?
> > >
> > > Many thanks, Carl
> > >
> > >
> >
>
William F. Robertson, Jr. Guest



Reply With Quote

