这是我第一次使用appfog。我有一个PHP应用程序。我想使用appfog从PHP应用程序发送电子邮件。我正在使用CodeIgniter框架。
我可以从我的localhost发送电子邮件。但是当我尝试使用appfog做同样的事情时,我收到了错误。它说认证失败了。我发送PHP代码的电子邮件如下所示。
$config = Array(
'protocol' => 'smtp',
'smtp_host' => 'ssl://smtp.googlemail.com',
'smtp_port' => 465,
'smtp_user' => 'shamir.towsif@gmail.com',
'smtp_pass' => 'xxxx',
'mailtype' => 'html',
'charset' => 'iso-8859-1',
'wordwrap' => true
);
$message = "Random message";
$this->load->library('email', $config);
$this->email->set_newline("\r\n");
$this->email->from('shamir.towsif@gmail.com', 'Vatiali');
$this->email->to($this->input->post('email'));
$this->email->subject('Verify Email');
$this->email->message($message);
$this->email->send();