watts Posted December 1, 2006 Share Posted December 1, 2006 I've recently uploaded my site from my local server to a remote server. I've been using phpMailer to send an email with multiple attachments using the AddAttachment function. It works fine on my local server but now on the remote server it sends the email but there are no attachments. [code]$mail->AddAttachment("$imgThbURL"); //$imgThbURL is the path to the image file pulled from the db[/code]I've checked and it's retrieving the image path fine but it's just not attaching the file.Does anyone have any ideas on what might be wrong here? Link to comment https://forums.phpfreaks.com/topic/29078-php-mailer-problem-with-attachments/ Share on other sites More sharing options...
projectshifter Posted December 1, 2006 Share Posted December 1, 2006 I'm not familiar with phpMailer, but do NOT enclose your strings with double quotes. $mail -> AddAttachment($imgThbURL); is perfectly fine by itself. Link to comment https://forums.phpfreaks.com/topic/29078-php-mailer-problem-with-attachments/#findComment-133281 Share on other sites More sharing options...
watts Posted December 1, 2006 Author Share Posted December 1, 2006 I know this isn't the problem because the $toAddress variable is also enclosed in "" and that works fine. I can't figure it out for the life of me. Link to comment https://forums.phpfreaks.com/topic/29078-php-mailer-problem-with-attachments/#findComment-133737 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.