How Can We Help?
CodeIgniter
CodeIgniter comes with an email sending library built in. See more information on how to use CodeIgniter with Mail250.
<?php
$this->load->library('email');
$this->email->initialize(array(
'protocol' => 'smtp',
'smtp_host' => 'smtp.swipemail.in',
'smtp_user' => 'mail250username',
'smtp_pass' => 'mail250password',
'smtp_port' => 2525,
'crlf' => "\r\n",
'newline' => "\r\n"
));
$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();
?>