DIAdem Help

Content Type
Programming Language
Current manual

Property: To for EMail

Property: To for EMail

Specifies the email addresses to which DIAdem sends the email.

Object.To
ObjectEMail
Object with this property
Object.ToString with read and write access

The following example creates an email and sends it without authentication.

VBScriptPython

 

Dim oMyEMailService, oMyMail
Set oMyEMailService = CreateEMailService("server.example.com")
Set oMyMail = oMyEMailService.CreateEMail("FromUser <from.example@example.com>", "", "This is the subject", "This is some text")
oMyMail.To       = "to@example.com"
oMyMail.BCC      = "blind.cc@example.com"
Call oMyMail.Send
In This Section
Was this information helpful?