Jump to content
  • 0

обычный скрипт отправки


lyapiss
 Share

Question

Есть mailform.php:

<?php
class mailform {
var $controls;

function mailform () {

}

function addControl_Text ($post_name, $mail_descr, $is_need = 0) {
$this->controls[] = array('type' => 1, 'name' => $post_name, 'need' => $is_need, 'descr' => $mail_descr);
}

function addControl_Select ($post_name, $mail_descr, $val_res_array ,$is_need = 0) {
$this->controls[] = array('type' => 2, 'name' => $post_name, 'keyval' => $val_res_array, 'need' => $is_need, 'descr' => $mail_descr);
}

function addControl_checkbox ($post_name, $mail_descr, $is_need = 0) {
$this->controls[] = array('type' => 3, 'name' => $post_name, 'need' => $is_need, 'descr' => $mail_descr);
}

function checkFields () {
foreach ( $this->controls as $control ) {
if($control['need'] && !$_POST[$control['name']]) {
return false;
}
}
return true;
}


function genMsg () {
$return = '';
foreach ( $this->controls as $control ) {
switch ($control['type']) {
case 1:
$cval = $_POST[$control['name']];
break;
case 2:
$cval = $control['keyval'][$_POST[$control['name']]];
break;
case 3:
$cval = $_POST[$control['name']]?'Да':false;
break;
}

if($cval)
$return .= $control['descr'].': '.strip_tags($cval)."\r\n";

}
return $return;
}

function mailto ($mail, $subj) {
return (mail($mail, $subj, $this->genMsg(), "Content-type: text/plain; charset=windows-1251\r\n"
));
}
}
?>

в теле страницы стоит форма и кусок кода:

<?php
if($_POST) {
require_once('mailform.php');
$f = new mailform();
$f->addControl_Text('name', 'фио', 1);
$f->addControl_Text('phone', 'телефон');
$f->addControl_Text('email', 'email');
$f->addControl_Text('quant', 'количество экземпляров');
$f->addControl_Text('comments', 'коментарий');
$f->addControl_Text('adres', 'адрес');

$f->addControl_Select ('times', 'способ доставки', array(
1 => 'курьером по Москве',
2 => 'в регионы'
));

if(!$f->checkFields()) {
echo '<h1>не заполнены поля</h1>';
}
elseif($f->mailto('******@mail.ru', "тема")) {
echo '<h1>заказ отправлен</h1>';
}
else {
echo '<h1>ошибка при отправке</h1>';
}
}
else {
?>

вопрос: как здесь прописать от кого письмо?

ps: я в php вообще не разбираюсь готовый код редактировал и настраивал.

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

я сам с классами не очень то дружу, но мне кажется можно сделать так:

$from="Сообщение от: ".$_POST['name'];
function mailto ($mail, $subj, $from) {
return (mail($mail, $subj, $from $this->genMsg(), "Content-type: text/plain; charset=windows-1251\r\n"
));
}
}
?>

Link to comment
Share on other sites

  • 0

Поразвелось, блин, фрилансеров.... Даже в ПХП разобраться лень, только бы бабло стричь... Хоть поделились бы тогда....

function mailto ($mail, $subj, $from)  {
return (mail($mail, $subj, $from $this->genMsg(), 'From: webmaster@example.com' . "\r\n" .
'Reply-To: webmaster@example.com' . "\r\n" .
'Content-type: text/plain; charset=windows-1251'."\r\n".
'X-Mailer: PHP/' . phpversion()
));

Link to comment
Share on other sites

  • 0
Поразвелось, блин, фрилансеров.... Даже в ПХП разобраться лень, только бы бабло стричь... Хоть поделились бы тогда....

Это ты кого фрилансером обозвал? Меня? :)

И потом, автор не сказал что он подразумевает в слове "от кого" емаил, или имя введенное в форму?

Edited by rus
Link to comment
Share on other sites

  • 0
Это ты кого фрилансером обозвал? Меня? :)

Не парься, не тебя )))

И потом, автор не сказал что он подразумевает в слове "от кого" емаил, или имя введенное в форму?

Вопрос конкретно задан:

вопрос: как здесь прописать от кого письмо?

Вот я и прописал, чтобы когда письмо придет к получателю, у него было написано, от кого оно )))

А если X-Mailer не прописать, то такое письмо по любому антиспам гугла не пробьет...

Link to comment
Share on other sites

  • 0
Вот я и прописал, чтобы когда письмо придет к получателю, у него было написано, от кого оно )))

А если X-Mailer не прописать, то такое письмо по любому антиспам гугла не пробьет...

Ну да, логично. :)

Link to comment
Share on other sites

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