我正在尝试使用codeigniter发送简单的电子邮件作为解释此链接codeigniter email class,但它不起作用。 这是我的表格:
<form method="post" action="<?php base_url()?>main/send_email">
<input type="text" placeholder="Name" name="name" class="name">
<input type="text" placeholder="Surname" name="surname" class="surname">
<input type="email" placeholder="email" name="email" class="email">
<textarea placeholder="What's on your mind" name="text" class="text"></textarea>
<input type="submit" value="SEND" class="send_mail" name="send_mail">
</form>
这是我的控制器
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Main extends CI_Controller {
public function __construct(){
parent::__construct();
$this->load->helper("common_helper");
date_default_timezone_set('Asia/Tbilisi');
}
public function index()
{
$this->load->view('pages/main');
}
public function send_email()
{
$this->load->library("email");
if($this->input->post("send_mail"))
{
$name = $this->input->post("name");
$surname = $this->input->post("surname");
$email = $this->input->post("email");
$text = $this->input->post("text");
$this->email->from($email, $name);
$this->email->to('77vanich77@gmail.com');
$this->email->subject('Email Test');
$this->email->message('testing email message');
$this->email->send();
}
}
}
我没有任何错误。
答案 0 :(得分:1)
请尝试以下代码。
$email_config = Array(
'protocol' => 'smtp',
'smtp_host' => 'bh-24.webhostbox.net',
'smtp_port' => '465',
'smtp_user' => 'feedback@domain.com',
'smtp_pass' => '12feedback34',
'mailtype' => 'html',
'starttls' => true,
'newline' => "\r\n"
);
$this->load->library('email', $email_config);
$this->email->from($to, 'FEEDBACK');
$this->email->to('feedback@domain.com');
$this->email->subject($sub);
$this->email->message($msg);
$this->email->send();