This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% | |
Const cdoSendUsingPickup = 1 'Send message using the local SMTP service pickup directory. | |
Const cdoSendUsingPort = 2 'Send the message using the network (SMTP over the network). | |
Const cdoAnonymous = 0 'Do not authenticate | |
Const cdoBasic = 1 'basic (clear-text) authentication | |
Const cdoNTLM = 2 'NTLM | |
Set objMessage = CreateObject("CDO.Message") | |
objMessage.Subject = "Example CDO Message" |