K
K
Kirill2016-01-27 15:09:52
PHP
Kirill, 2016-01-27 15:09:52

Send an e-mail?

Hello! I wrote the code, the form of the return letter, and inserted the variable that is entered into the printf recipient, it does not work, what is the error?

<html>
    <head>
        <meta charset=utf-8>
        </head>
    </html>
<?php
    if (isset($_POST["submit"])) {
        $firstname = $_POST["firstname"];
        $email10 = $_POST["email10"];
        $tel10 = $_POST["tel10"];
         $mes10 = $_POST["mes10"];
        $to= require 'cmsadmin/connect.php';

$sql_select = 'SELECT * FROM ordersait';
$result = mysql_query($sql_select);
$row = mysql_fetch_array($result);


do
{
  printf("" .$row['email5'] . "");


}
  



while($row = mysql_fetch_array($result));; //Ваша почта (куда будут приходить письма)
        $message = "
        $firstname \n
        $email10 \n
        $tel10 \n
        $mes10 \n
        ";
        //Этот текст Вам придет
        
        if ($email10 != 0) { //проверка, ввиден ли email, если да - добавляем в письмо и его
            $message .= "\n e-mail: $email10";
        }
$from  = "From: 24goldsite <24goldsite.ru>\r\nReply-To: [email protected]";
mail($to , "Запрос на домен" , $message , $from) or die("Ошибка в отправке письма");
        print "Запрос получен, в течении двух часов, мы с Вами свяжемся";
    }
?>

thanks in advance

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Alexander, 2016-01-27
@Tuborg

Try printf($row['email5']);

S
Sergey, 2016-01-27
@gangstarcj

Eh, how long will you suffer then?)
You have all the questions about this $row['email5'] of yours

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question