创建电子邮件

$this->email->from('accounts@yourwebsite.com', 'Tom Webmaster');
$this->email->to('fred@fake.com', 'Freddie Fakeperson');
$this->email->subject('Your Account Is Active');
$this->email->message('Welcome to our new site!');

在’from’方法中,第一个参数是你发送的电子邮件地址,第二个参数是你希望接收者看到的名称。

方法中,你可以定义发送电子邮件的人员。

主题方法定义了电子邮件的主题。

消息方法定义了电子邮件正文中的内容。

这些中的任何一个都可能是用户发送到你网站的数据。所以你可能在这里有一个包含发布数据的变量。所以他们可能看起来更像这样:

$this->email->to($email, $username);