Jump to content
  • 0

Webform: отправка на определенный e-mail в зависимости от выбора пункта


xSPiRiTx
 Share

Question

Есть контактная вебформа.

Подскажите как реализовать, чтобы при выборе "Сотрудничество" результаты отправлялись на один мейл, а при выборе "по работе сайта" - на другой?!

s_1346710011_8851546_b663a66722.png

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Прошу прощения, не посмотрел раздел и написал просто php код, не зная тонкостей друпала :facepalmxd: Не внимательный какой я...Где кнопка удалить?ее не хватает

———

Ну я бы сделал как-нибудь так, не знаю правда, будет ли работать:

<form method='POST' action='myHandlerForm.php'>
<input type='text' value='Ваше имя' name='name'>
<input type='text' value='E-mail' name='email'>
<input type='radio' value='boss' name='who' checked />Сотрудничество
<input type='radio' value='admin' name='who'>По работе сайта
<textarea name='message'></textarea>
<input type='submit' value='Отправить'>

myHandlerForm:


$headers = 'From: <вашадресс@example.com>\r\n';
$headers .= 'Content-type: text/html; charset=koi-8\r\n';
$message = $_POST['message'];
if ($_POST['who']==='boss'){
$theme = 'сотрудничество';
$message = '
<html>
<head>
<title>Birthday Reminders for August</title>
</head>
<body>
<p>Вам пишет:'.$_POST["name"].'По теме:'.theme.'</p>
<div style="text-align:center; width:100%">'.$_POST["message"].'</div>
</body>
</html>
';
mail('boss@blabla.bla', $theme, $message, $headers);
}
if ($_POST['who']==='admin'){
$theme = 'pабота сайта';
$message = '
<html>
<head>
<title>Birthday Reminders for August</title>
</head>
<body>
<p>Вам пишет:'.$_POST["name"].'По теме:'.$theme.'</p>
<div style="text-align:center; width:100%">'.$_POST["message"].'</div>
</body>
</html>
';
mail('admin@blabla.bla', $theme, $message, $headers);
}

Edited by moron
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