i am using this script for the email attachment but when i execute the form on my server it shows to warning
Warning: fread(): supplied argument is not a valid stream resource
Warning: fclose(): supplied argument is not a valid stream resource
pls help
Change this:
$fp = fopen($strresume, "rb");
$file = fread($fp, $strresume_size);
to this:
$fp = fopen($filetemp, "rb");
$file = fread($fp, $strresume_size);
I use this function to send HTML email with an attachment:
http://www.barattalo.it/2010/01/10/sending-emails-with-attachment-and-html-with-php/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With