Purpose
Logs in as the current user running the program in order to send the message.
The message will appear in the user's Mailbox and the "From" name will be set to their account, not the FCAS gateway account. The send will obey all the user's view restrictions and permissions.
Syntax
Message.Impersonate
Example
Dim MyMessage As Email
...
MyMessage.Impersonate
MyMessage.To="Joe User"
MyMessage.Subject="Testing"
MyMessage.Send
|