Jump to content

Sending Emails with Attachments


atheneris

Recommended Posts

Hello,

I'm trying to send an email with a PDF attachment. The email is sending, but the attachment will not open. Any help you can give is appreciated. Code snippets below:

 

function mail_attachment($filename, $path, $mailto, $from_mail, $from_name, $replyto, $subject, $message) {

    $file = $path.$filename;

    $file_size = filesize($file);

    $handle = fopen($file, "r");

    $content = fread($handle, $file_size);

    fclose($handle);

    $content = chunk_split(base64_encode($content));

    $uid = md5(uniqid(time()));

    $name = basename($file);

    $header = "From: ".$from_name." <".$from_mail.">\r\n";

    $header .= "Reply-To: ".$replyto."\r\n";

    $header .= "MIME-Version: 1.0\r\n";

    $header .= "Content-Type: multipart/mixed; boundary=\"".$uid."\"\r\n\r\n";

    $header .= "This is a multi-part message in MIME format.\r\n";

    $header .= "--".$uid."\r\n";

    $header .= "Content-type:text/plain; charset=iso-8859-1\r\n";

    $header .= "Content-Transfer-Encoding: 7bit\r\n\r\n";

    $header .= $message."\r\n\r\n";

    $header .= "--".$uid."\r\n";

    $header .= "Content-Type: application/pdf; name=\"".$filename."\"\r\n"; // use different content types here

    $header .= "Content-Transfer-Encoding: base64\r\n";

    $header .= "Content-Disposition: attachment; filename=\"".$filename."\"\r\n\r\n";

    $header .= $content."\r\n\r\n";

    $header .= "--".$uid."--";

    if (mail($mailto, $subject, "", $header)) {

        print("mail send ... OK"); // or use booleans here

    } else {

        print("mail send ... ERROR!");

    }

}

 

$my_file = "Adol_Packet_v2.pdf";

$my_path = $_SERVER['DOCUMENT_ROOT']."/homepages/35/d350375870/htdocs/html/";

$my_name = "Company Name";

$my_mail = "[email protected]";

$my_replyto = "[email protected]";

$my_subject = "Welcome Email From Carlock & Associates";

 

$my_message = "Test Message";

 

mail_attachment($my_file, $my_path, $email_to, $my_mail, $my_name, $my_replyto, $my_subject, $my_message);

Link to comment
https://forums.phpfreaks.com/topic/223380-sending-emails-with-attachments/
Share on other sites

BlueSkyIS, I tried that email function, but get an error.

Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in homepages/35/htdocs/html/Rmail.php on line 23.

 

I have not changed anything in the Rmail.php file.

The PHP file or the sent email file?

 

The PDF that was received by the clients email,

 

try adding this

 

after

    $file = $path.$filename;

add

    if(!file_exists($file)){
        echo "File not Found";
        return false;
    }

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.