|
|
I am attempting to send an email via .vbs using the local SMTP service on a Windows 2003 Standard R2 Server. The script runs fine as a Administrator, but fails when ran with a Basic User user account.
Error Message:
Script: U:\Notifications\AbraDis.vbs Line: 17 Char: 1 Error: The "SendUsing" configuration value is invalid.
Code: 80040220 Source: CDO.Message.1
Message section of the actual script:
Set objEmail = CreateObject("CDO.Message") objEmail.From = "jamesta[ at ]something.net" objEmail.To = "jamesta[ at ]something.net" objEmail.Subject = "Abra is disabled." objEmail.Textbody = "Abra logons have been disabled for maintenance until 12:00 PM" objEmail.Send
|
|
|