Advertisement
Guest User

fPDF

a guest
Jul 2nd, 2014
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. add_action( 'wpcf7_before_send_mail', 'save_application_form');
  2. function save_application_form($cf7) {
  3.  
  4. /* GET EXTERNAL CLASSES */
  5. require(get_stylesheet_directory() . '/fpdf/fpdf.php');
  6.  
  7. $pdf = new FPDF();
  8. $pdf->AddPage();
  9. $pdf->SetFont('Arial','B',16);
  10. $pdf->Write("Hello, World! Is there anything below this?");
  11. $pdf->Output(get_stylesheet_directory() . '/pdfgen/pdf.pdf', 'F');
  12. $cf7->uploaded_files = array ( 'attachedfile' => get_stylesheet_directory() . '/pdfgen/pdf.pdf' );
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement