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


Method TSMTPMail.AddAddress

Declaration
procedure AddAddress(Value: String);
Description



Method TSMTPMail.AddBCC

Declaration
procedure AddBCC(Value: String);
Description



Method TSMTPMail.AddCC

Declaration
procedure AddCC(Value: String);
Description



Method TSMTPMail.AddLine

Declaration
procedure AddLine(Line: String);
Description



Property TSMTPMail.Address

Declaration
property Address: String read GetAddress write SetAddress;
Description



Property TSMTPMail.BCC

Declaration
property BCC: String read GetBCC write SetBCC;
Description



Property TSMTPMail.Body

Declaration
property Body: String read GetBody write SetBody;
Description



Property TSMTPMail.CC

Declaration
property CC: String read GetCC write SetCC;
Description



Method TSMTPMail.Clear

Declaration
procedure Clear;
Description



Method TSMTPMail.create

Declaration
constructor create(Host: String; From: String; To: String);
Description



Method TSMTPMail.GetAddress

Declaration
function GetAddress: String;
Description



Method TSMTPMail.GetBCC

Declaration
function GetBCC: String;
Description



Method TSMTPMail.GetBody

Declaration
function GetBody: String;
Description



Method TSMTPMail.GetCC

Declaration
function GetCC: String;
Description



Method TSMTPMail.GetSubject

Declaration
function GetSubject: String;
Description



Method TSMTPMail.QuickMail

Declaration
function QuickMail(From: String; To: String; Subject: String; Body: String): String;
Description



Method TSMTPMail.SendMail

Declaration
function SendMail: String;
Description



Method TSMTPMail.SetAddress

Declaration
procedure SetAddress(Value: String);
Description



Method TSMTPMail.SetBCC

Declaration
procedure SetBCC(Value: String);
Description



Method TSMTPMail.SetBody

Declaration
procedure SetBody(Value: String);
Description



Method TSMTPMail.SetCC

Declaration
procedure SetCC(Value: String);
Description



Method TSMTPMail.SetSubject

Declaration
procedure SetSubject(Value: String);
Description



Property TSMTPMail.Subject

Declaration
property Subject: String read GetSubject write SetSubject;
Description