Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save amegabosco/ed5bf5e682965e92793bdd492f2314f6 to your computer and use it in GitHub Desktop.
Save amegabosco/ed5bf5e682965e92793bdd492f2314f6 to your computer and use it in GitHub Desktop.
phpexcel for phpmailer
// 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