Hi Mark-

That is really easy to do from any Microsoft web server. A simple VBS script calling the CDOSys emailer would generate that for you. Code below...

-Dave


----------------------------------------

'Send using the Pickup directory on the IIS server
Dim iMsg
Dim iConf
Dim Flds
Dim strHTML

Const cdoSendUsingPickup = 1

set iMsg = CreateObject("CDO.Message")
set iConf = CreateObject("CDO.Configuration")

Set Flds = iConf.Fields
With Flds
.Item("http://schemas.microsoft.com/cdo/configuration/sendusing";) = cdoSendUsingPickup
   
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverpickupdirectory";)="D:\Inetpub\mailroot\Pickup"

   .Update
End With

' Build HTML for message body
strHTML = "<HTML>"
strHTML = strHTML & "<HEAD>"
strHTML = strHTML & "<BODY>"
strHTML = strHTML & "<b> This is the test HTML message body</b></br>"
strHTML = strHTML & "</BODY>"
strHTML = strHTML & "</HTML>"

With iMsg
   Set .Configuration = iConf
   .To =                             'ToDo:enter a valid email address
   .From =                         'ToDo:enter a valid email address
   .Subject = "This is a test CDOSYS message (Pickup directory)"
   .HTMLBody = strHTML
   .Send
End With

' cleanup of variables
Set iMsg = Nothing
Set iConf = Nothing
Set Flds = Nothing

MsgBox "Mail Sent!"


----------------------------------------

----- Original Message ----- From: "Mark E. Smith" <[EMAIL PROTECTED]>
To: <[email protected]>
Sent: Saturday, August 27, 2005 7:53 PM
Subject: [Declude.JunkMail] OT: SMTP latency monitor


I'm looking for an app that will test the latency/queue speed of email from
the Internet through our organization.

We have 4 IMAIL/Declude filter/gateway servers in front of our Exchange
system.
From there we have 3 Front End Exchange servers behind a Foundry load
balancer.
There are 5 back-end Exchange clusters in various cities around the world.

What I'd like to have is a monitor that will send a heartbeat SMTP message
every x mins from the Internet to a mailbox on one of mailbox servers around
the world.
Based on the time delta, I would know the average latency of email from the
Internet.

Before I go and write some app I wanted to see if anyone knew if something
like this existed.


---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type "unsubscribe Declude.JunkMail".  The archives can be found
at http://www.mail-archive.com.




---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type "unsubscribe Declude.JunkMail".  The archives can be found
at http://www.mail-archive.com.

Reply via email to