ediSmtpCfg

The ediSmtpCfg configures the settings for Framework EDI as an SMTP client.  An SMTP client, when sending a mail transaction, takes the following steps:

  1. Connects to the SMTP server.
  2. Waits for a reply to its initial connection from the server.
  3. Sends an EHLO command to the server.
  4. Waits for a reply to the EHLO command.
  5. If the SMTP server requires authentication, the client sends an AUTH command.
  6. Waits for a reply to AUTH command.  Series of communication with server to authenticate client is then undertaken.
  7. Sends a MAIL command.
  8. Waits for a reply to the MAIL command.
  9. Sends an RCPT command for each recipients.
  10. Waits for a reply to each RCPT command.
  11. Sends a DATA command.
  12. Waits for a reply to the DATA command for approval to send SMTP message.
  13. Sends the entire SMTP message in chunks to the server.
  14. After entire message is sent, terminates the send chunk operation by sending the string sequence <CRLF>"."<CRLF>.
  15. Waits for a reply after termination of sending message.
  16. Sends a QUIT command.
  17. Waits for a reply to the QUIT command.
  18. Disconnects from the server.

For additional information, see RFC 2821: Simple Mail Transfer Protocol.

Methods

Properties