I’m trying the plugin but i dont think it will help me. I don’t want to print in pdf my pages.
In my php function, i take the order of the user. Typically like:
$mail_message = “We have received your order. Thanks”;
$pdf = “ORDER: ” . $_POST[‘order’];
wp_mail($mail, $mail_message);
But before send it by email, I would like to create a pdf with the message $pdf and join it to the mail. Like this, the user will receive an email to inform him that we have received his order and a pdf with his purchase order.