-
-
Save amegabosco/ed5bf5e682965e92793bdd492f2314f6 to your computer and use it in GitHub Desktop.
phpexcel for phpmailer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// get the content | |
@ob_start(); | |
$writer = PHPExcel_IOFactory::createWriter($excel, "Excel2007"); | |
$writer->save("php://output"); | |
$data = @ob_get_contents(); | |
@ob_end_clean(); | |
// set email attachment | |
$mail->AddStringAttachment($data, date('YmdHis') . '.xls'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment