Search code examples
emailvbscriptexchange-server

Ways to send E-Mails over MS Exchange with VBScript


I have to write a VBScript which will run on a Windows Server 03 (no Office, SMTP, etc. installed - like it's a fresh installation). This script should send E-Mails over an MS Exchange Server (on another server). So now I have a meeting with the head of the team managing those Servers. To prepare I'd like to know what ways I have to send an E-Mail from a VBScript over an MS Exchange (also including how to authenticate with the Exchange Server)?

As far as my googling goes there is one way with CDO (only SMTP?) which can use the current user for authentication or a clear text username & password.

edit: Or am I mistaking and there is only SMTP for sending E-Mails over Exchange Server? Also that there is only authentication with clear text / using current credentials?

Cheers, Gregor


Solution

  • There are other ways as well.

    I'd prefer Exchange WebDav for previous versions of Exchange server

    and use Exchange WebServices with the latest version of Exchange.

    These method requires no client install so can be used anywhere.

    WebDav: http://www.msexchange.org/articles/Access-Exchange-2000-2003-Mailbox-WebDAV.html WebService: http://msdn.microsoft.com/en-us/library/aa563009(v=EXCHG.140).aspx

    EWS scripting sample: Link