PHP Classes
elePHPant
Icontem

Tiny Mailer: Compose and send email messages with mail function

Recommend this page to a friend!
  Info   View files Documentation   View files View files (4)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog    
Last Updated Ratings Unique User Downloads Download Rankings
2019-10-12 (5 hours ago) RSS 2.0 feedNot enough user ratingsTotal: 292 This week: 2All time: 7,328 This week: 167Up
Version License PHP version Categories
tiny-mailer 1.0.4Custom (specified...5Email, PHP 5
Description Author

This class can compose and send email messages with mail() function.

It takes an array of arguments that define parameters like the message subject, body, sender and recipient addresses.

The class assembles the MIME message body and sends it using the PHP mail() function.

  Performance   Level  
Name: Peter Kahl <contact>
Classes: 37 packages by
Country: United Kingdom United Kingdom
Innovation award
Innovation award
Nominee: 23x

Winner: 2x

 

Details

Tiny Mailer ?? ????????? ??????

Downloads License If this project has business value for you then don't hesitate to support me with a small donation.

Light-weight PHP mailer that uses the mail() function. Plain text only. Nothing fancy. UTF-8 capable.

Usage Example

use peterkahl\tinyMailer\tinyMailer;

$body = '???? Jane,
I am so happy to use this simple mailer.
John Roe';

$arr = array(
  'sendto-name' => 'Jane Doe',
  'sendto-mail' => 'jane.doe@destination.whatever',
  'from-name'   => 'John Roe',
  'from-mail'   => 'john.roe@origin.whatever',
  'message-txt' => $body,
  'subject'     => 'Some subject text ?????',
);

$id = tinyMailer::send($arr);

if ($id === false) {
  echo 'Failed';
}
else {
  echo 'Successfuly sent message with ID '. $id;
}

  Files folder image Files  
File Role Description
Files folder imagesrc (1 file)
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file LICENSE Lic. License text
Accessible without login Plain text file README.md Doc. Documentation

  Files folder image Files  /  src  
File Role Description
  Plain text file tinyMailer.php Class Class source

 Version Control Unique User Downloads Download Rankings  
 100%
Total:292
This week:2
All time:7,328
This week:167Up