8000 GitHub - fu-hsi/ep-mailer: Mailer class.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fu-hsi/ep-mailer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

epMailer

epMailer class support:

  • 7bit, 8bit, quoted-printable and base64 content transfer encoding.
  • Plain text and html content type (UTF-8).
<?php

    include 'epMailer.php';

    $mail = new epMailer();
    $mail->encoding(epMailer::ENC_QUOTED_PRINTABLE);  // Default encoding

    $mail->subject('Subject');
    $mail->textBody('Text body'); // or htmlBody()

    $mail->addRecipient('john.smith@example.com', 'John Smith');
    $mail->addCC('fred.bloggs@example.com');

    $mail->send();

?>

About

Mailer class.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0