TSMTPClient

From Ultibo.org
Revision as of 06:40, 29 May 2018 by Ultibo (Talk | contribs) (Created page with "Return to Unit SMTP __TOC__ === Description === ---- ''To be documented'' === Class definitions === ---- <div class="toccolours mw-collapsible mw-collapse...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Return to Unit SMTP


Description


To be documented

Class definitions



[Expand]

TSMTPClient = class(TWinsock2TCPClient)


Function declarations



[Expand]
constructor TSMTPClient.Create;
Description: To be documented


[Expand]
destructor TSMTPClient.Destroy;
Description: To be documented


[Expand]
function TSMTPClient.GetReply(var AReply:String):Boolean;
Description: To be documented


[Expand]
function TSMTPClient.SendRequest(const ARequest:String):Boolean;
Description: To be documented


[Expand]
function TSMTPClient.DoConn(const AHost,APort:String; var AReply:String):Boolean;
Description: To be documented


[Expand]
function TSMTPClient.DoHelo(const AHost:String; var AReply:String):Boolean;
Description: To be documented


[Expand]
function TSMTPClient.DoEhlo(const AHost:String; var AReply:String):Boolean;
Description: To be documented


[Expand]
function TSMTPClient.DoAuth(const AProtocol,AUsername,APassword:String; var AReply:String):Boolean;
Description: To be documented


[Expand]
function TSMTPClient.DoMail(const ASender:String; var AReply:String):Boolean;
Description: To be documented


[Expand]
function TSMTPClient.DoRcpt(const AReceiver:String; var AReply:String):Boolean;
Description: To be documented


[Expand]
function TSMTPClient.DoVrfy(const AAddress:String; var AReply:String):Boolean;
Description: To be documented


[Expand]
function TSMTPClient.DoBeginData(var AReply:String):Boolean;
Description: To be documented


[Expand]
function TSMTPClient.DoSendData(const AData:String):Boolean;
Description: To be documented


[Expand]
function TSMTPClient.DoEndData(var AReply:String):Boolean;
Description: To be documented


[Expand]
function TSMTPClient.DoQuit(var AReply:String):Boolean;
Description: To be documented


[Expand]
function TSMTPClient.DoRset(var AReply:String):Boolean;
Description: To be documented


[Expand]
function TSMTPClient.DoTime(var AReply:String):Boolean;
Description: To be documented


[Expand]
function TSMTPClient.DoNoop(var AReply:String):Boolean;
Description: To be documented


Return to Unit Reference