Send a simple email between users
Private Sub TDSendMail()

' Send a simple email between users

'This example shows how to send a simple message
' to a user and a specified email address
' with subject "OTA API Documentation Feedback"
' and body "Call me about the new documentation.
'   I have some suggestions."
'tdc is the global TDConnection object.
tdc.SendMail "QC_documentation_UserName", _
    "yourQC_UserName;FDarcy@Pemberley.co.uk", _
    "OTA API Documentation Feedback", _
    "Call me about the new documentation. I have some suggestions."

End Sub