The Aloaha WebDAV mailer is part of the Aloaha PDF Suite. The WebDAV API itself is freeware and can be used without having to purchase a valid Aloaha PDF Suite license.
Please find a sample on how to use the WebDAV Mailer below:
Why do I need WebDAV?
You need to send automated emails via Hotmail, GMX etc
Unlike SMTP emails sent via WebDAV will appear in your sent items Folder
You need to send emails but between you and your exchange is a firewall
Port 25 not available - lots of ISPs nowadays block that port
'This simple script demonstrates
'how to use WebDAV to send an email.
'The WebDAV Mailer is a freeware component
'of the Aloaha PDF Suite.
'http://www.aloaha.com/download/aloaha_pdf.zip
dim webdav
dim msg
dim strmail
dim ExchangeAlias
dim ExchangeUsername
dim ExchangeServer
dim ExchangePassword
set webdav=createobject("aloahadav.webdav")
'Please note the difference between Alias and Name
webdav.ExchangeAlias="stefan"
webdav.ExchangeUsername="helgoland\stefan"
'Test if a connection can be made with the
'given credentials
if webdav.test_connection( _
cstr(webdav.ExchangeServer), _
cstr(webdav.ExchangeAlias), _
cstr(webdav.ExchangeUsername), _
cstr(webdav.ExchangePassword)) = true then
'create email in memory
Set msg = CreateObject("CDO.Message")