Jump to content

$this->email


Recommended Posts

Hello guys and girls....

maybe samone know in what file is this:

$this->load->library('email');
$config['useragent'] = 'Code-Igniter-Mailer-^^'
$config['mailtype'] = 'text'
$config['validate'] = TRUE;
$config['protocol'] = 'smtp'
$config['smtp_host'] = 'localhost'
$config['newline'] = "\r\n";
$this->email->initialize($config);

$this->email->initialize($config);
$this->email->from('[email protected]', 'Your Name');
$this->email->reply_to('[email protected]', 'Your Name');
$this->email->to('[email protected]');
$this->email->subject('Email Subject');
$this->email->message('Your Message Here.');
$this->email->send();


Thx a lot.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...