Jump to content
  • 0

Отправление сообщений с сайта.


Pavel_html
 Share

Question

Всем привет! Вот у меня есть скрипт:

<?php
if(empty($_POST['name']))
{
die('Вы не ввели тему');
}

if(empty($_POST['body']))
{
die('Вы не ввели сообщение');
}
$to=$_POST["to"];
$name=$_POST["name"];
$body=$_POST["body"];
mail($to,$name,$body);
print "<p>Спасибо за сообщение</p>"
?>

Как сделать так чтобы а)если пользователь не ввел допустим тему, сообщение не отправлялось. б)как прописать отправителя, у меня в поле от кого пишется Unprivileged user

Помогите юзеру!

Link to comment
Share on other sites

Recommended Posts

  • 0

Ладно, даю рыбу:

function sendmsg($to, $subj, $text) {
global $system_env;
$header .= "MIME-Version: 1.0n";
$header .= "Content-type: text/html; charset=windows-1251n";
$header .= "From: ".$system_env[SpamFromEmail]."n";
$header .= "Content-Transfer-Encoding: quoted-printablenn";
$header .= "$textn";

return mail($to, '=?windows-1251?B?'.base64_encode($subj).'?=', '', $header);
}

Link to comment
Share on other sites

  • 0

получается полный код будет....

<?php
if(empty($_POST['name']))
{
die('Вы не ввели тему');
}

if(empty($_POST['body']))
{
die('Вы не ввели сообщение');
}
$to=$_POST["to"];
$name=$_POST["name"];
$body=$_POST["body"];
function sendmsg($to, $subj, $text) {
global $system_env;
$header .= "MIME-Version: 1.0n";
$header .= "Content-type: text/html; charset=windows-1251n";
$header .= "From: ".$system_env[SpamFromEmail]."n";
$header .= "Content-Transfer-Encoding: quoted-printablenn";
$header .= "$textn";

return mail($to, '=?windows-1251?B?'.base64_encode($subj).'?=', '', $header);
}
sendmsg();
print "<p>Спасибо за сообщение</p>"
?>

Я правильно понял?

Link to comment
Share on other sites

  • 0

попробуй - поймешь

(грустно-грустно вздохнул "во всяком случае надеюсь на это")

кстати где-то подпись обсуждали... я б вообще так сделал:

$not_human = ($you == 'человек') ? null : 'не ';

echo('Вы '.$not_human.'человек!!');

Link to comment
Share on other sites

  • 0
$system_env[spamFromEmail] порадовало))))

Да, это забыл поправить, системная настройка :)

Pavel_html, напиши вместо ?$system_env[spamFromEmail]? ящик, который будет оторажатся в поле ?от? в почтовом клиенте. Это не обязательно может быть реальный ящик, но обязаельно долен быть ящик с твоего домена (иначе яндекс-почта банит письма).

> а почему почти?

Да потому что sendmsg ? это функция, и принимает она параметры.

Link to comment
Share on other sites

  • 0
не работает! вот ссылка на форму http://www.clubunnatov.spb.ru/kontakt.html

Что не работает?

ЗЫ: http://www.clubunnatov.spb.ru/kontakt.html : я аж прослезился.

Подсказка: Судя по тому, что у тебя вообще ничего не выводтся, у тебя синтаксическая ошибка скрипта.

Link to comment
Share on other sites

  • 0

эх вот:

<html>
<head>
<link rel="stylesheet" type="text/css" href="css/styles.css"/>
<title>Клуб Юннатов</title>
</head>
<body text="#000000" background="fon.gif">
<img src="images/logo.gif" id="header">
<div class="main">
<img src="images/menu.jpg" usemap="#menu">
<map name="menu">
<area shape="rect" coords="18,27,135,58" href="index.php">
<area shape="rect" coords="188,29,313,59" href="beach3.html">
<area shape="rect" coords="370,29,485,59" href="beach4.html">
<area shape="rect" coords="537,28,655,58" href="beach-f25.html">
<area shape="rect" coords="707,29,829,60" href="http://clubunnatov.forumcity.com">
</map>
<?php
if(empty($_POST['name']))
{
die('Вы не ввели тему');
}

if(empty($_POST['body']))
{
die('Вы не ввели сообщение');
}
$to=$_POST["to"];
$name=$_POST["name"];
$body=$_POST["body"];
function sendmsg($to, $subj, $text) {
global $system_env;
$header .= "MIME-Version: 1.0n";
$header .= "Content-type: text/html; charset=windows-1251n";
$header .= "From: ".$system_env[you@mail.ru]."n";
$header .= "Content-Transfer-Encoding: quoted-printablenn";
$header .= "$textn";

return mail($to, '=?windows-1251?B?'.base64_encode($subj).'?=', '', $header);
}
sendmsg();
print "<p>Спасибо за сообщение</p>"
?>
</div>
</body>
</html>

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