Welcome Guest, Not a member yet? Register   Sign In
need urgent help!!!!!!
#1

[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???????????????
#2

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

CodeIgniter User Guide - Email Class See attach()
#3

[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-gui...ading.html




Theme © iAndrew 2016 - Forum software by © MyBB