Codeigniter 中的电子邮件

Email in Codeigniter

我在 Codeigniter 和 PHP 方面还很菜鸟,目前正在通过制作项目等来学习学校的东西。在我的项目中,包含电子邮件。我想知道我应该在电子邮件中学习什么以及从哪里开始。我所知道的是我必须首先在 codeigniter 中配置它,我想发送很容易,因为有很多关于如何做的资源。接收呢?我需要像 "gmail smpt" 这样的第三方吗?我需要在线服务器吗?或者我可以在当地做吗?我 google 关于这个 "email" 的事情,但是有很多方法可以做到这一点,这让我很困惑。有人可以慢慢地向我解释会更好,并提供诸如逐步教程之类的资源来通过发送和接收来发送电子邮件。提前致谢!

Codeigniter 上有相当不错的电子邮件系统。通过查看非常容易理解的用户指南,您可以学到很多东西。

您可以通过阅读用户指南了解更多信息http://www.codeigniter.com/user_guide/

如何设置电子邮件 codeigniter 的好教程https://www.youtube.com/watch?v=VlNz6GlSjPo

电子邮件 Class http://www.codeigniter.com/user_guide/libraries/email.html

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

$config['protocol'] = 'sendmail';
$config['mailpath'] = '/usr/sbin/sendmail';
$config['charset'] = 'iso-8859-1';
$config['wordwrap'] = TRUE;

$this->email->initialize($config);

$this->email->from('your@example.com', 'Your Name');
$this->email->to('someone@example.com');
$this->email->cc('another@another-example.com');
$this->email->bcc('them@their-example.com');

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

$this->email->send();

echo $this->email->print_debugger();