The ediSmtpCfg configures the settings for Framework EDI as an SMTP
client. An SMTP client, when sending a mail transaction, takes the
following steps:
Connects to the SMTP server.
Waits for a reply to its initial connection from the server.
Sends an EHLO command to the server.
Waits for a reply to the EHLO command.
If the SMTP server requires authentication, the client sends an AUTH
command.
Waits for a reply to AUTH command. Series of communication with
server to authenticate client is then undertaken.
Sends a MAIL command.
Waits for a reply to the MAIL command.
Sends an RCPT command for each recipients.
Waits for a reply to each RCPT command.
Sends a DATA command.
Waits for a reply to the DATA command for approval to send SMTP message.
Sends the entire SMTP message in chunks to the server.
After entire message is sent, terminates the send chunk operation by
sending the string sequence <CRLF>"."<CRLF>.
Waits for a reply after termination of sending message.
Sends a QUIT command.
Waits for a reply to the QUIT command.
Disconnects from the server.
For additional information, see RFC 2821: Simple Mail Transfer Protocol.
Methods
AddBcc - Adds a recipient
that will receive a blind copy of the message.
AddCc - Adds a recipient that will receive a copy of the message.