CodeIgniter Forums
need urgent help!!!!!! - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: need urgent help!!!!!! (/showthread.php?tid=49594)



need urgent help!!!!!! - El Forum - 02-26-2012

[eluser]Unknown[/eluser]
i m currently doing a project using CodeIgniter in which several items including text, image and video should be send via email by a single click(using a button). but i cant understand how can i do it.can anybody help me with this???????????????


need urgent help!!!!!! - El Forum - 02-26-2012

[eluser]InsiteFX[/eluser]
You would need to attach the image and video to the email.

CodeIgniter User Guide - Email Class See attach()



need urgent help!!!!!! - El Forum - 02-26-2012

[eluser]ludo31[/eluser]
for mail configuration

Code:
$this->load->library('email');

$this->email->from('[email protected]', 'Your Name');
$this->email->to('[email protected]');
$this->email->cc('[email protected]');
$this->email->bcc('[email protected]');

$this->email->subject('Email Test');
$this->email->message('Testing the email class.');

$this->email->send();

echo $this->email->print_debugger();
after I think you must use form_open_multipart()
try to see here : http://ellislab.com/codeigniter/user-guide/libraries/file_uploading.html