Hello Guest it is March 28, 2024, 05:57:29 AM

Author Topic: scripted email notification  (Read 3596 times)

0 Members and 1 Guest are viewing this topic.

scripted email notification
« on: December 28, 2012, 04:28:40 PM »
anyone know of a way to send an email based on a condition within your scripts/code?  Something built in.  Maybe a VB call to an email client on the box? 

Offline BR549

*
  •  6,965 6,965
    • View Profile
Re: scripted email notification
« Reply #2 on: December 31, 2012, 01:03:46 PM »
yup, that worked.  Although I had to put a "1" in at the authentication spot, instead of spelling out the method.

'Type of authentication, NONE, Basic (Base64 encoded), NTLM
'objMessage.Configuration.Fields.Item _
'("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = cdoBasic

(didn't work)

'Type of authentication, NONE, Basic (Base64 encoded), NTLM
'objMessage.Configuration.Fields.Item _
'("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1

works.

thanks!
Re: scripted email notification
« Reply #3 on: June 11, 2015, 12:43:06 AM »
Sorry to dig up an old thread - but can someone explain how to do this a bit more thoroughly?

Thanks!