Php attached multiple excel files in email codeigniter not working |
I want to attach two excel files (sealing_production.xls & sealing_assembly.xls)to my email using php,but I have no idea on how to do it.
Can anybody help me please?? Problem When I click on my send mail button, I gets the mail. with all details. but attachment is not working. Try 1.I echo the file name, its prints the file name from controller 2.I also try to put Code: $this-> email -> attach($file); in my model and also this in my sendEmail function Code: $this -> global_model -> sendfullmail($user, $subject, $content,$cc, '',$xls); but the email that i receive is only blank email without content. Here my php code for the send Email function PHP Code: function sendEmail() { and this the function of sendfullmail in my model: Code: //send out full email include cc and bcc What I have tried: I have check similar links on stack overflow about this. But i'm unable to find any solution for this. Link's i have checked
And where are you using this statement in your sendfullmail()?
$this->email->attach('/path/to/photo1.jpg'); What did you Try? What did you Get? What did you Expect?
Joined CodeIgniter Community 2009. ( Skype: insitfx )
(09-13-2017, 03:59 AM)InsiteFX Wrote: And where are you using this statement in your sendfullmail()? Hi, I try to change my sendfullmail into below PHP Code: function sendfullmail($receipient, $title, $message,$cc,$bcc,$file){ and add this in my sendEmail() PHP Code: $this -> global_model -> sendfullmail($user, $subject, $content,$cc, '',$xls1);
I got your message but I cannot reply to you because you have Private Messages turned OFF!
Are you sending this to a live server or localhost? What did you Try? What did you Get? What did you Expect?
Joined CodeIgniter Community 2009. ( Skype: insitfx )
|
Welcome Guest, Not a member yet? Register Sign In |