Class TSMTPMail
Declaration
TSMTPMail = class(TObject)
procedure AddAddress(Value: String);
procedure AddBCC(Value: String);
procedure AddCC(Value: String);
procedure AddLine(Line: String);
property Address: String read GetAddress write SetAddress;
property BCC: String read GetBCC write SetBCC;
property Body: String read GetBody write SetBody;
property CC: String read GetCC write SetCC;
procedure Clear;
constructor create(Host: String; From: String; To: String);
function GetAddress: String;
function GetBCC: String;
function GetBody: String;
function GetCC: String;
function GetSubject: String;
function QuickMail(From: String; To: String; Subject: String; Body: String): String;
function SendMail: String;
procedure SetAddress(Value: String);
procedure SetBCC(Value: String);
procedure SetBody(Value: String);
procedure SetCC(Value: String);
procedure SetSubject(Value: String);
property Subject: String read GetSubject write SetSubject;
end;
Description
Declaration
procedure AddAddress(Value: String);
Description
Declaration
procedure AddBCC(Value: String);
Description
Declaration
procedure AddCC(Value: String);
Description
Declaration
procedure AddLine(Line: String);
Description
Declaration
property Address: String read GetAddress write SetAddress;
Description
Declaration
property BCC: String read GetBCC write SetBCC;
Description
Declaration
property Body: String read GetBody write SetBody;
Description
Declaration
property CC: String read GetCC write SetCC;
Description
Declaration
procedure Clear;
Description
Declaration
constructor create(Host: String; From: String; To: String);
Description
Declaration
function GetAddress: String;
Description
Declaration
function GetBCC: String;
Description
Declaration
function GetBody: String;
Description
Declaration
function GetCC: String;
Description
Declaration
function GetSubject: String;
Description
Declaration
function QuickMail(From: String; To: String; Subject: String; Body: String): String;
Description
Declaration
function SendMail: String;
Description
Declaration
procedure SetAddress(Value: String);
Description
Declaration
procedure SetBCC(Value: String);
Description
Declaration
procedure SetBody(Value: String);
Description
Declaration
procedure SetCC(Value: String);
Description
Declaration
procedure SetSubject(Value: String);
Description
Declaration
property Subject: String read GetSubject write SetSubject;
Description