始终使用codeigniter向“垃圾邮件”部分发送电子邮件。我在AWS服务器中使用了Codeigniter 这是我的图书馆:
由PHPMailer支持的与CodeIgniter兼容的电子邮件库
这是我的控制器:
<?php
$this->load->library('email');
$subject = 'Regitration';
$message = '<p>Thank you for registering.</p>';
$body = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=' . strtolower(config_item('charset')) . '" />
<title>' . html_escape($subject) . '</title>
<style type="text/css">
body {
font-family: Arial, Verdana, Helvetica, sans-serif;
font-size: 16px;
}
</style>
</head>
<body>
' . $message . '
</body>
</html>';
$result = $this->email->set_header('hello', 'test')
->set_newline("\r\n")
->from('test@gmail.com','test')
->to($this->input->post('jobemail'))
->subject($subject)
->message($body)
->send();
?>
如何解决?