All Projects → ezequieljuliano → Mailer4Delphi

ezequieljuliano / Mailer4Delphi

Licence: Apache-2.0 license
For sending e-mails of any complexity in Delphi

Programming Languages

pascal
1382 projects
Batchfile
5799 projects

Mailer For Delphi

Mailing tool aimed for simplicity, for sending e-mails of any complexity in Delphi. This includes e-mails with plain text and/or html content, embedded images and separate attachments, SMTP, SMTPS / SSL and SMTP + SSL. The Mailer4Delphi provides a driver-independent framework to build mail and messaging applications.

The e-mail message structure is built to work with all e-mail clients and has been tested with many different webclients as well as some mainstream client applications such as MS Outlook or Mozilla Thunderbird.

Mailer Adapters Drivers

The Mailer4Delphi is available for the following drivers:

  • Indy
  • MAPI
  • Synapse
  • Outlook

You can use the driver that suits you best.

Using Mailer4Delphi

Using this API will is very simple, you simply add the Search Path of your IDE or your project the following directories:

  • Mailer4Delphi\src

Of course, you must add the path the units of the chosen driver.

Example of use:

uses
  Mailer4D, 
  Mailer4D.Driver.Indy;

var
  mailer: IMailer;
begin
  // Here you can create from any driver.
  mailer := TIndyMailer.Create;
  mailer.Host('smtp.example.com')
	.Port(587)
	.Username('[email protected]')
	.Password('password')
	.From('Test', '[email protected]')
	.ToRecipient('[email protected]')
	.CcRecipient('[email protected]')
	.BccRecipient('[email protected]')
	.Attachment('C:\File.txt')
	.Subject('Subject Test')
	.Message('Message Test')
	.Send;
end;
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].