InternetMail.Send
Syntax:
Parameters:
<Message> (required)
Mail message.
<ProcessTexts> (optional)
Processes texts before sending.
Default value: Process.
<SendingProtocol> (optional)
Specifies the type of sending protocol. Possible options are IMAP or SMTP.
Specifying POP3 results in an exception.
Default value: SMTP.
Description:
Availability:
Note:
Example:
Mail = New InternetMail; Message = New InternetMailMessage; Mail.Logon(Profile); Mail.Send(Message); Mail.Logoff(); |