AOR Reports - Email

Hey there,

Wanted to know how to send Reports via e-mail.
I’ve tried this:

$pdf->Output($this->bean->name, “S”);

but it don’t seem to work.

Thanks in advance.
John

Hi John,

If you need to email pdf’s, there is a guide here on the mPDF documentation.

Thanks,

Will.

Hey Will,

Thanks. Figured it out.

$pdf->Output($pdfFilePath, ‘F’);

if (!$mail->Send()) {
$GLOBALS[‘log’]->debug(“ERROR: Mail sending failed!”);
}
$pdf->Output($pdfFilePath, ‘D’);

John.