Skip to content

Latest commit

 

History

History
46 lines (30 loc) · 1.27 KB

README.md

File metadata and controls

46 lines (30 loc) · 1.27 KB

to-swift-mime-parser

Parse a generic mail stream, and convert it to a SwiftMailer Message

Build Status Code Coverage Scrutinizer Code Quality

Installing (composer)

Add following lines on your composer.json

"requre":{
    "goetas/to-swift-mime-parser": "^1.0"
}

Usage

$parser = new \Goetas\Mail\ToSwiftMailParser\MimeParser();

// read a mail message saved into eml format (or similar)
$inputStream = fopen('mail.eml', 'rb');

$mail = $parser->parseStream($inputStream); // now $mail is a \Swift_Message  object

// edit the email
$mail->setFrom("me@you.it");
$mail->setTo("me@you.it");
$mail->setSubject("New Subject");


// optionaly loop through mail parts (and edit it!)
// $mail->getChildren();

// send a new mail
$mailer->send($mail);