|
Home > Archive > IIS and SMTP > January 2004 > why sending message multiple times
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
why sending message multiple times
|
|
|
| I'm trying to use the smtp component of IIS (on a Win2K server, SP4). If I
run the following script:
Set myMail = CreateObject("CDONTS.NewMail")
myMail.To = "to@address.com"
myMail.Body = "test"
myMail.From = "me@msn.com"
myMail.Subject = "Testing"
myMail.Send
It sends, but it keeps sending forever. I can't figure out why.
TIA
| |
| =?Utf-8?B?VG9ueSBTdQ==?= 2004-01-24, 2:05 am |
| IMO the problem isn't in the code you've posted, it's how you're invoking the code.
Tony Su
|
|
|
|
|