spyros1234 Posted April 17, 2008 Share Posted April 17, 2008 Hello I trying to find a way to send by email multiple attachments. I found a class (Attachment Mailer v1.2) http://www.finalwebsites.com/snippets.php?id=41 I am uploading the first the files and then I am sending them with this class The problem is that I am getting this error message: “Warning: mail() [function.mail]: SAFE MODE Restriction in effect. The fifth parameter is disabled in SAFE MODE. in /var/www/vhosts/hostname/httpdocs/attach_mailer_class.php on line 280” Php script : require($_SERVER['DOCUMENT_ROOT']."/admin/attach_mailer_class.php"); $test = new attach_mailer($name = "Spyros Kotsakis", $from = "[email protected]", $to = "[email protected]", $cc = "", $bcc = "", $subject = "Test text email with attachments"); $test->text_body = "...Some body text\n\n the admin"; $test->add_attach_file($_SERVER['DOCUMENT_ROOT']."/uploads/".$row_ekpedeftika_files['file_name']); $test->process_mail(); Please help me !!!! I am open if you have another suggestion on how to send multiple attachments Thank you! [attachment deleted by admin] Link to comment https://forums.phpfreaks.com/topic/101597-i-trying-to-find-a-way-to-send-by-email-multiple-attachments/ Share on other sites More sharing options...
craygo Posted April 17, 2008 Share Posted April 17, 2008 Problem is your php is running in safe mode. Run it normal, try it again then get back to us. Ray Link to comment https://forums.phpfreaks.com/topic/101597-i-trying-to-find-a-way-to-send-by-email-multiple-attachments/#findComment-519774 Share on other sites More sharing options...
spyros1234 Posted April 17, 2008 Author Share Posted April 17, 2008 How cant I Switch php to Normal mode? Thank you! Link to comment https://forums.phpfreaks.com/topic/101597-i-trying-to-find-a-way-to-send-by-email-multiple-attachments/#findComment-519779 Share on other sites More sharing options...
spyros1234 Posted April 17, 2008 Author Share Posted April 17, 2008 If I am not able to turn off the safe mode do you have any suggestion on how can I send multiple attachments? Link to comment https://forums.phpfreaks.com/topic/101597-i-trying-to-find-a-way-to-send-by-email-multiple-attachments/#findComment-519792 Share on other sites More sharing options...
craygo Posted April 17, 2008 Share Posted April 17, 2008 Have you tried phpmailer?? not sure if that will do the same. Ray Link to comment https://forums.phpfreaks.com/topic/101597-i-trying-to-find-a-way-to-send-by-email-multiple-attachments/#findComment-519793 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.