表格提交后向用户发送确认电子邮件

时间:2013-05-11 04:59:29

标签: php codeigniter email

我想通过我的网站联系表单与用户联系,向用户发送确认电子邮件。

我可以使用以下代码在PHP中完成:

mail($to, $subject, $message, $headers);
$replymsg = "Thank you for your interest. Our team will contact you soon";
mail($email, $subject, $replymsg, $headers);

如何使用CodeIgniter框架做同样的事情?

2 个答案:

答案 0 :(得分:0)

您将使用CI电子邮件类。以下是documentation,请访问它,以便您可以使用$headers变量中设置的值。我不知道他们所以我只是没有将它们放在下面的代码中。

$this->load->library('email');
$this->email->from('your@example.com', 'Your Name');
$this->email->to($to);
$this->email->subject($subject);
$this->email->message($message);
$this->email->send();

$this->load->library('email');
$this->email->from('your@example.com', 'Your Name');
$this->email->to($email);
$this->email->subject($subject);
$this->email->message("Thank you for your interest. Our team will contact you soon");
$this->email->send();

答案 1 :(得分:0)

CodeIgniter有一个非常好的电子邮件库,它比PHP的mail函数更好用,虽然对于一个简单的电子邮件,例如你的例子中没有太大的区别。

http://ellislab.com/codeigniter/user-guide/libraries/email.html