Indy 9
|
TIdSMTPDataReplies = class(TPersistent)
TIdSMTPDataReplies is the type used to represent the TIdSMTPMessages.DataReplies property.
property EndDataReply: string;
EndDataReply is used by the TIdSMTPServer.CommandData action handler after StartDataReply is written to the client connection, and after handling incoming mail data in the TIdSMTPServer.OnReceiveMessage event handler.
property StartDataReply: string;
StartDataReply is used by the TIdSMTPServer.CommandData action handler to notify the client connection that the Server is ready to receive incoming mail data.
procedure Assign(Source: TPersistent); override;
Assign checks whether the Source parameter specifies another TIdSMTPDataReplies instance, and if so, copies the values of the StartDataReply and EndDataReply properties.
If Source is not a TIdSMTPDataReplies instance, Assign calls the inherited method, which assigns properties from any object that specifies how to copy using the AssignTo method.
constructor Create;