我不熟悉使用smtp发送邮件,我尝试使用此代码,但我没有收到任何电子邮件。我想知道我应该在我的网络邮件中设置任何配置。
$email_config = Array(
'protocol' => 'smtp',
'smtp_host' => 'ssl://smtp.gmail.com',
'smtp_port' => '465',
'smtp_user' => 'noreply@mydomain.com',
'smtp_pass' => '1234563767',
'mailtype' => 'html',
'starttls' => true,
'newline' => "\r\n"
);
$this->load->library('email', $email_config);
$this->email->from('noreply@mydomain.com', 'enquiry');
$this->email->to("test@mydomain.com");
$this->email->subject('Package Enquiry');
$email = $this->load->view('packages/enquiry',true);
$this->email->message($email);
$this->email->send();