Difference between revisions of "TSmtpCli"
Jump to navigation
Jump to search
Line 84: | Line 84: | ||
{| | {| | ||
− | | width="140" valign="top" | [[TSmtpCli.Abort | Abort]] |||| Cancels any transactions in progress, | + | | width="140" valign="top" | [[TSmtpCli.Abort | Abort]] |||| Cancels any transactions in progress, closes server connection. |
|- | |- | ||
| valign="top" | [[TSmtpCli.Auth | Auth]] |||| Sends SMTP command '''AUTH''' starting the authentication process. | | valign="top" | [[TSmtpCli.Auth | Auth]] |||| Sends SMTP command '''AUTH''' starting the authentication process. | ||
Line 104: | Line 104: | ||
| valign="top" | [[TSmtpCli.Mail | Mail]] |||| Executes methods [[TSmtpCli.MailFrom | MailFrom]], [[TSmtpCli.RcptTo | RcptTo]], and [[TSmtpCli.Data | Data]] consecutively. | | valign="top" | [[TSmtpCli.Mail | Mail]] |||| Executes methods [[TSmtpCli.MailFrom | MailFrom]], [[TSmtpCli.RcptTo | RcptTo]], and [[TSmtpCli.Data | Data]] consecutively. | ||
|- | |- | ||
− | | valign="top" | [[TSmtpCli.MailFrom | MailFrom]] |||| Sends SMTP command '''MAIL | + | | valign="top" | [[TSmtpCli.MailFrom | MailFrom]] |||| Sends SMTP command '''MAIL''' |
|- | |- | ||
| valign="top" | [[TSmtpCli.Open | Open]] |||| Executes methods [[TSmtpCli.Connect | Connect]], [[TSmtpCli.Ehlo | Ehlo]], and [[TSmtpCli.Auth | Auth]] consecutively. | | valign="top" | [[TSmtpCli.Open | Open]] |||| Executes methods [[TSmtpCli.Connect | Connect]], [[TSmtpCli.Ehlo | Ehlo]], and [[TSmtpCli.Auth | Auth]] consecutively. | ||
Line 112: | Line 112: | ||
| valign="top" | [[TSmtpCli.RcptNameAdd | RcptNameAdd]] |||| Assigns recipients to the various recipient lists. | | valign="top" | [[TSmtpCli.RcptNameAdd | RcptNameAdd]] |||| Assigns recipients to the various recipient lists. | ||
|- | |- | ||
− | | valign="top" | [[TSmtpCli.RcptTo | RcptTo]] |||| Sends SMTP command '''RCPT | + | | valign="top" | [[TSmtpCli.RcptTo | RcptTo]] |||| Sends SMTP command '''RCPT''', for each recipient in the lists. |
|- | |- | ||
| valign="top" | [[TSmtpCli.Rset | Rset]] |||| Sends SMTP command '''RSET'''. | | valign="top" | [[TSmtpCli.Rset | Rset]] |||| Sends SMTP command '''RSET'''. |
Revision as of 16:10, 27 September 2007
Main page -> ICS component reference -> TSmtpCli
Contents
Overview
- unit SmtpProt
- inheritance TCustomSmtpCli->TSmtpCli
Component TSmtpCli implements client-side of the Simple Mail Transfer Protocol as specified in RFC 2821, and MIME message format according to RFC 1521 and 2045. Currently supported SMTP Service Extensions for Authentication are AUTH LOGIN, AUTH PLAIN, AUTH CRAM-MD5 and AUTH CRAM-SHA1 (RFC 2554 as well as RFC 1734). The TSmtpCli is working non-blocking, a synchronously working counterpart is also available, see TSyncSmtpCli.
Properties
AuthType | Authentication methode to be used with method Auth. | |
AuthTypesSupported | A list of authentication methods supported by the server available after command EHLO returned. | |
CharSet | The Character set, default value iso-8859-1 | |
ConfirmReceipt | Request confirmation of receipt. | |
Connected | Are we connected to the mail server? | |
ContentType | Either HTML or plain text (smtpHtml or smtpPlainText) | |
CtrlSocket | The underlying instance of TWSocket handles the connection and raw data exchange. | |
EmailFiles | File attachments. | |
ErrorMessage | Last SMTP error message. | |
FromName | E-mail address to be sent to the mail server with SMTP command MAIL. | |
Handle | Handle of the hidden window used internally by the component. | |
HdrCc | Mail header line CC. | |
HdrFrom | Mail header line From. | |
HdrPriority | Mail priority (creates a custom mail header line). | |
HdrReplyTo | Mail header line Reply-To. | |
HdrReturnPath | Mail header line Return-Path | |
HdrSender | Mail header line Sender. | |
HdrSubject | Mail header line Subject | |
HdrTo | Mail header line To | |
Host | Host name or IP Address of the SMTP server | |
LastResponse | Last response from the mail server. | |
LocalAddr | ||
MailMessage | The mail message. | |
MessageID | A unique ID created for each mail message, appears as mail header line (Message-ID) | |
OwnHeaders | Set OwnHeaders to True in order to build your own, custom headers. | |
Password | SMTP login password | |
Port | Port number of the SMTP server, defaults to 25 | |
RcptName | E-mail address to be sent to the mail server with SMTP command RCPT | |
RequestType | Current request type | |
ShareMode | ShareMode of the stream (file attachments). | |
SignOn | Parameter sent with the HELO/EHLO command to the mail server. | |
State | Current component state | |
Username | SMTP login username |
Methods
Abort | Cancels any transactions in progress, closes server connection. | |
Auth | Sends SMTP command AUTH starting the authentication process. | |
Connect | Connects to the mail server. | |
Create | Constructor | |
Data | Sends SMTP command DATA. | |
Destroy | Destructor | |
Ehlo | Sends SMTP command EHLO. | |
Helo | Sends SMTP command HELO. | |
HighLevelAsync | Execute multiple commands consecutively | |
Executes methods MailFrom, RcptTo, and Data consecutively. | ||
MailFrom | Sends SMTP command MAIL | |
Open | Executes methods Connect, Ehlo, and Auth consecutively. | |
Quit | Sends SMTP command QUIT | |
RcptNameAdd | Assigns recipients to the various recipient lists. | |
RcptTo | Sends SMTP command RCPT, for each recipient in the lists. | |
Rset | Sends SMTP command RSET. | |
ThreadAttach | Attaches the component to current thread context. | |
ThreadDetach | Detaches the component from current thread context. | |
Vrfy | Sends SMTP command VRFY. |
Events
OnAfterFileOpen | Align test | |
OnAttachContentType | ||
OnAttachHeader | ||
OnBeforeFileOpen | ||
OnCommand | ||
OnDisplay | Triggered for every command/response. Is very useful to output for debug-purposes. | |
OnGetData | ||
OnHeaderLine | ||
OnProcessHeader | ||
OnRcptToError | ||
OnRequestDone | Triggered when a request is completed. | |
OnResponse | ||
OnSessionClosed | ||
OnSessionConnected |
How to