Jump to content
  • 0

отправка данных формы при помощи ajax и jqery


ilgibitym
 Share

Question

нашел работающий скрипт и php файл для отправки форм без перехода на другую страницу. вопрос встал с синтаксисом: http://jsfiddle.net/xrff164m/  

хочу сделать, чтоб на почту приходило

 

Имя: Иван

Фамилия: Иванов

Телефон: +9 999 999 99 99

 

когда пытаюсь внести изменение в body: $emailgo->body= "<b>Имя:</b>$name<br/> и т.д.; то он начинает ругаться и на почту ничего не приходит. 

 

также не понятно, что происходит в этом случае: 

 

$dc=$this->data_charset;
$sc=$this->send_charset;
$enc_to=mime_header_encode($this->to_name,$dc,$sc).' <'.$this->to_email.'>';
$enc_subject=mime_header_encode($this->subject,$dc,$sc);
$enc_from=mime_header_encode($this->from_name,$dc,$sc).' <'.$this->from_email.'>';
$enc_body=$dc==$sc?$this->body:iconv($dc,$sc.'//IGNORE',$this->body);
$headers='';
$headers.="Mime-Version: 1.0\r\n";
$headers.="Content-type: ".$this->type."; charset=".$sc."\r\n";
$headers.="From: ".$enc_from."\r\n";
return mail($enc_to,$enc_subject,$enc_body,$headers);
 
 
до этого использовал стандартную форму отправки через $send = mail (), но сейчас решил осваивать ajax. 
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy