1

只是想在 Codeigniter 中设置一个 AJAX 联系表。这是我第一次使用 CI。

我让它工作,现在它坏了,我不知道为什么。

这是代码..

JS

$.ajax({
        type:'POST',
        url: post_url,
        data: post_data,
        beforeSend:function(){
            alert(this.data);  <<< This is alerting the correct form data to me
        },
        success:function(msg){
            $($form).fadeOut(500, function(){
                var msg = '<div class="messageSent"><p>'+ msg +'</p></div>';
                $form.html(msg).fadeIn();  <<< This is returning undefined
            });
        }
    });

..和PHP ...

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Email extends CI_Controller{


 public function __construct()
   {
        parent::__construct();
        $this->load->library('email');
   }



public function index(){

$emailFromName = $this->input->post('name', TRUE);
$emailFromAddress = html_entity_decode($this->input->post('email', TRUE));
$emailFromMessage = "Email from the Brewer's website\n";
$emailFromMessage .= "==============================\n";
$emailFromMessage .= "From: " + $emailFromName + "\n";
$emailFromMessage .= "==============================\n";
$emailFromMessage .= "Respond Email; " + $emailFromAddress +"\n";
$emailFromMessage .= "==============================\n";
$emailFromMessage .= $this->input->post('message', TRUE);


$this->email->from($emailFromName);
$this->email->to('recipient@gmail.com'); 
$this->email->subject('Message from the website.');
$this->email->message($emailFromMessage);   

$this->email->send();

echo $this->email->print_debugger();  // echoes undefined
// echo($emailFromName);  // also echoes undefined
}
}

?>

我认为问题一定出在 PHP 中。它似乎没有读取任何已发布的变量。我什至无法回显 $this->input->post('name'); (虽然我有它的工作!)

..那么我做错了什么?

注意 - 我把 html_entity_decode 放在那里,因为我注意到电子邮件地址被发布为“address%40gmail.com”......所以这似乎是个好主意。有必要吗?

4

1 回答 1

0

严格来说,这不是您问题的答案——但我在稳定我的 CodeIgniter 项目的邮件功能方面遇到了很大的困难。我找到的解决方案花了大约 1 个小时来实施,我敢肯定,它为我节省了 10 个小时的麻烦。

考虑使用“SwiftMailer”框架从您的应用程序发送邮件。它是一个强大可靠的 php 邮件框架,而且它是免费的。起初我很难整合这 2 个框架,然后我找到了这个博客,我在几分钟内完成了任务。

http://grafikkaos.co.uk/blog/article/101-using-swift-mailer-with-codeigniter

于 2012-08-28T15:29:11.157 回答