|
 |
asp_databases thread: Re: AW: Re: AW: Re: AW: Re: Sending email
Message #1 by "Win, Ann" <AWin@a...> on Wed, 11 Oct 2000 11:35:30 -0700
|
|
Hi,
Sorry to interrupt in between the mails. However, I really need
help on "how to install SMTP server on the webserver"? My IT guy is out
sick and it seems like I have to do it myself.
I Have no idea where to start? Can any body help? Thanks.
-ann
-----Original Message-----
From: Imar Spaanjaars [mailto:Imar@S...]
Sent: Tuesday, September 05, 2000 1:03 PM
To: ASP Databases
Subject: [asp_databases] Re: AW: Re: AW: Re: AW: Re: Sending email
Dirk,
Did you configure the SMTP server on the webserver?? It needs to be
installed and configured correctly.
In case you need help for that, there are articles on this subject on
http://www.asptoday.com
Imar
At 08:55 PM 9/5/2000 +0200, you wrote:
>I do this, and it runs ok but sends no mail:
>
>Dim myMail, HTML
>Set myMail = CreateObject("CDONTS.NewMail")
>
>HTML = "<!DOCTYPE HTML PUBLIC ""-//IETF//DTD HTML//EN"">"
>HTML = HTML & "<html>"
>HTML = HTML & "<head>"
>HTML = HTML & "<meta http-equiv=""Content-Type"""
>HTML = HTML & "HTML = HTML & ""content=""text/html;
charset=iso-8859-1"">"""
>
>HTML = HTML & "<title>bx Recalc</title>"
>HTML = HTML & "</head>"
>HTML = HTML & "<body>"
>HTML = HTML & "Recalc of bx complete<BR>
>---<BR>
>You are currently subscribed to asp_databases <BR>
$subst('Email.Unsub')
>
---<BR>
You are currently subscribed to asp_databases <BR>
$subst('Email.Unsub')
</BODY>"
>HTML = HTML & "</html>"
>
>myMail.From = "dirk.neethling2@h..."
>myMail.To = "dirk.neethling2@h..."
>myMail.Subject = "bx Recalc"
>myMail.BodyFormat = 0
>myMail.MailFormat = 0
>myMail.Body = HTML
>myMail.Send
>Set myMail = Nothing
>
>
>what could it be?
>thanks,
>Dirk
Message #2 by ttaylor@c... on Wed, 11 Oct 2000 15:12:02 -0500
|
|
Hehehe... I just did that 2 minutes ago and it took me forever to figure out
how!
Go into the Control Panel > Add/Remove Programs > Add/Remove Windows
Components (Windows2000) > IIS Components
You should see a check box for the SMTP service somewhere in the Add/Remove
Programs area!
Sincerely,
Todd M. Taylor
Concurrency, Inc.
Phone: 1.262.781.7171
Fax: 1.877.549.0494
> Hi,
> Sorry to interrupt in between the mails. However, I really need
> help on "how to install SMTP server on the webserver"? My IT guy is out
> sick and it seems like I have to do it myself.
> I Have no idea where to start? Can any body help? Thanks.
> -ann
|
|
 |