5

我已经设置了我的控制器和我的联系表格。但是当我在我的联系页面上单击“提交”时,我没有收到任何错误,但我没有收到电子邮件。谁能帮我弄清楚为什么我实际上没有收到电子邮件?我很感激任何帮助。这是我的控制器代码:

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Home extends CI_Controller {
    public function index()
    {
        $this->template->build('home');
    }

    public function email() {
        $name = $this->input->post('name');
        $email = $this->input->post('email');
        $phone_number = $this->input->post('phone_number');
        $message = $this->input->post('message');
        $this->load->library('email');
        $this->email->from($email, 'Your Name');
        $this->email->to('anish@develop.io');
        $this->email->cc('another@another-example.com');
        $this->email->bcc('them@their-example.com');
        $this->email->subject('Email Test');
        $this->email->message(
          'My name is'.$name.', Im testing this email class. My email is '.$email. '. My Phone number is '.$phone_number.
         ' This is my message '.$message. ' Thanks!!'
         );
        $this->email->send();
        echo $this->email->print_debugger();
        $this->template->build('home');
    }
}

这是我的联系页面视图代码:

<div class="inner-content" id="contact-content">

  <title>CSS3 Contact Form</title>
  <div id="contact">
    <h1>Send an email</h1>
    <form method="post" action="/home/email">
      <fieldset>
        <label for="name">Name:</label>
        <input name="name" id="name" type="text" placeholder="Enter your full name">
        <label for="email">Email:</label>
        <input name="email" id="email" type="email" placeholder="Enter your email address">
        <label for="message">Message:</label>
        <textarea name="message" id="message" placeholder="Type your message here..."></textarea>
        <input type="submit" value="Send message">
      </fieldset>
    </form>
  </div>
</div>
4

5 回答 5

1

php_openssl.dll在文件中启用php.ini并尝试使用 gmail。Pascal Spruit 或 Omade 的答案会奏效。php.ini编辑文件后不要忘记重新启动本地服务器。

于 2013-08-23T08:12:01.587 回答
1
$config = Array(
        'protocol'  => 'smtp',
        'smtp_host' => 'ssl://smtp.googlemail.com',
        'smtp_port' => '465',
        'smtp_user' => 'yourname@gmail.com',
        'smtp_pass' => 'yourpassword',
        'mailtype'  => 'html',
        'starttls'  => true,
        'newline'   => "\r\n"
    );

$this->load->library('email', $config);
$this->email->from('youremail@gmail.com', 'Jodie');
$this->email->to('toemail@gmail.com');
$this->email->subject('testing email');
$this->email->message('This shows the email worked');
$this->email->send();
echo $this->email->print_debugger();
于 2013-08-22T13:05:06.557 回答
0

如果有帮助,请先尝试配置电子邮件类

$config['protocol'] = 'sendmail';
$config['mailpath'] = '/usr/sbin/sendmail';
$config['charset'] = 'iso-8859-1';
$config['wordwrap'] = TRUE;

$this->email->initialize($config);

尝试在 email->send() 函数周围添加此代码以查看响应是什么

更改 $this->email->send();

if ( ! $this->email->send())
{
    echo 'Some error in sending email';
}

如果错误字符串没有回显,则问题不在于 CI,它可能与邮件服务器有关。

于 2013-06-06T19:09:39.180 回答
0

尝试使用 gmail

$config = Array(
        'protocol'  => 'smtp',
        'smtp_host' => 'ssl://smtp.googlemail.com',
        'smtp_port' => '465',
        'smtp_user' => 'someuser@gmail.com',
        'smtp_pass' => 'password',
        'mailtype'  => 'html',
        'starttls'  => true,
        'newline'   => "\r\n"
    );

$this->load->library('email', config);
$this->email->from('email@gmail.com', 'George');
$this->email->to('email@gmail.com');
$this->email->subject('hey this is an email');
$this->email->message('this is the content of the email');
$this->email->send();
echo $this->email->print_debugger();
于 2013-08-02T11:43:27.433 回答
0

我也遇到了同样的问题,但我发现每件事都在 gmail 上成功进行,但只有电子邮件没有成功。

如果我发送$email = $this->input->post('useremail');那不是在 gmail 上。它显示邮件发送成功,或者你在“如果”条件下传递了什么,但邮件没有进入邮箱。但是,如果我通过其他任何东西,例如姓名电话密码或任何东西,那一切都会成功。电子邮件的 CI 或 php 是否有任何限制。因为我在服务器上成功发送了 html 内容,但只有电子邮件没有发送。还有一件事,包括电子邮件,但通过本地主机发送,但我在托管服务器上打开了我的网站并配置了一切,一切都很好,但只是电子邮件没有通过表格,

如果有人对此有任何想法 - 如何在联系表中包含电子邮件,请与我一起分享您的知识。

于 2016-07-15T20:53:46.490 回答