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
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
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.