发送没有smtp_pass codeigniter的电子邮件

时间:2018-05-21 18:31:09

标签: php codeigniter email

我正在尝试制作Sugestions / Reclamations表单,用户需要填写他的电子邮件,主题和消息。 电子邮件将发给我,所以我将永远知道“收件人”电子邮件。

通常我会发送这样的电子邮件:

$config = array(
                'protocol' => 'smtp',
                'smtp_host'=>'smtp.mail.yahoo.com',
                'smtp_port'=>465,
                'smtp_user' => 'mail@yahoo.com',
                'smtp_pass' => 'password',
                'mailtype' => 'html',
                'charset'   => 'utf-8',
                'smtp_crypto' => 'ssl',
                'crlf' => "\r\n",
                'newline' => "\r\n",
            );
$this->email->initialize($config);
            $this->email->from('mail@yahoo.com','someText');
            $this->email->to($user_email);
            $this->email->subject('Some Subject');
            $this->email->message('Some message');

在这种情况下我不会有用户的电子邮件密码,所以如何发送电子邮件?我假设它是必需的密码。

1 个答案:

答案 0 :(得分:1)

您可以将其电子邮件地址设置为“from”,将其设置为“to”,但您必须使用smtp用户信息和密码。