Generate a PDF and send as attachment in Email

One way: In PHP // download fpdf class (http://fpdf.org) require(“/fpd/fpdf.php”); // fpdf object $pdf = new FPDF(); // generate a simple PDF (for more info, see http://fpdf.org/en/tutorial/) $pdf->AddPage(); $pdf->SetFont(“Arial”,”B”,14); $pdf->Cell(40,10, “this is a pdf example”); // email stuff (change data below) $to = “target@domain.com”; $from = “me@domain.com”; $subject = “send email with pdf attachment”; $message … Read more