Good afternoon. I'm going to use PHPMailer, but I'm not sure how to send it using variables.
See:
$mail->CharSet = "text/html; charset=UTF-8;";
$mail->IsHTML(true);
$mail->msgHTML(file_get_contents('proposta.php?id='.$_GET["id"].''), dirname(__FILE__));
I need the file proposta.php
to receive the proposal ID.
Error:
Warning: file_get_contents (proposal.php? id = 17): failed to open stream: Resource temporarily unavailable
How can you do this?