我的网站上有一个用户填写的表单。在表单验证后,我想发送该表单,因为它的值填充到邮件(可能是HTML表单或pdf)。我应该怎么做?我知道使用Php或Codeigniter发送表单的基本知识,但我不知道如何将表单作为HTML表单或Pdf发送。
答案 0 :(得分:1)
试试这个:
#post your HTML form in a view say form.php
public function sendForm(){ #the controller function
if($this->input->post(null)){
$postValues = $this->input->post(null); #retrieve all the post variables and send to form.php
$form = $this->load->view('form.php', $postValues, true); #retrieve the form as HTML and send via email
$this->load->library('email');
$this->email->from('your@example.com', 'Your Name');
$this->email->to('someone@example.com');
$this->email->subject('Email Test');
$this->email->message($form);
$this->email->send();
}
}
答案 1 :(得分:0)
您的意思是通过电子邮件发送表单?
在laravel框架中,您可以通过传入$ view来完全发送视图(包含您的表单)。我不知道codeigniter,也许他们也有这种功能?
答案 2 :(得分:0)
如果我是你,我会使用PHPMailer,因为它有一个非常方便的接口,并通过套接字支持不同的安全协议。如果您按照上面提到的链接,您将找到一个非常具有描述性的使用示例。现在,您想要关注以下几点:
<?php
$mail = new PHPMailer;
// [...]
$mail->IsHTML(true);
// [...]
$mail->Body = 'This is the HTML message body <b>in bold!</b>';
?>
我打赌你可以将任何字符串传递给Body
属性。因此,只需将填充了值的HTML表单呈现给变量,然后将其传递给Body
。
答案 3 :(得分:0)
对于CI的Email Class
,这很容易你所要做的就是处理帖子然后你可以创建一个新的视图并将表单数据传递给它
$this->email->initialize($config);
$this->email->from('your@example.com', 'Your Name');
$this->email->to('someone@example.com');
$this->email->cc('another@another-example.com');
$this->email->bcc('them@their-example.com');
$this->email->subject('Email Test');
$data['form_post'] = $this->input->post();
$msg = $this->load->view('email/template',$data,true);
$this->email->message($msg);
$this->email->alt_message('Something Should go here Else CI just takes the original and strips the tags');
$this->email->send();