package main
import (
"fmt"
"github.com/julienschmidt/httprouter"
"net/http"
"log"
)
func Index(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
fmt.Fprint(w, "Welcome!\n")
}
func Hello(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
fmt.Fprintf(w, "hello, %s!\n", ps.ByName("name"))
fmt.Fprintf(w, "Fam, %s!\n", ps.ByName("fam"))
}
func main() {
router := httprouter.New()
router.GET("/", Index)
router.GET("/hello/:name/:fam", Hello)
log.Fatal(http.ListenAndServe(":9001", router))
}
$__smtp = array(
"host" => "smtp.yandex.ru", //smtp сервер
"debug" => 2, //отображение информации дебаггера (0 - нет вообще)
"auth" => true, //сервер требует авторизации
"port" => 25, //порт (по-умолчанию - 25)
"username" => "%username%",//имя пользователя на сервере
"password" => "%password%",//пароль
"addreply" => "your@email.com",//ваш е-mail
"replyto" => "your@email.com" //e-mail ответа
);
<?php
if (isset($_POST['name'])) {$name = $_POST['name'];}
if (isset($_POST['phone'])) {$phone = $_POST['phone'];}
$to = "rrr@rr.rr"; /*Укажите ваш адрес электоронной почты*/
$headers = "Content-type: text/plain; charset = utf-8";
$subject = "КРЕДИТ. Нвовое сообщение.";
$message = "Имя: $name \nТелефон: $phone \n";
$send = mail ($to, $subject, $message, $headers);
if ($send == 'true')
{
header( 'Location: index.html', true, 303 );
//echo "<b>Спасибо за отправку вашего сообщения!<p>";
//echo "<a href=index.html>Нажмите,</a> чтобы вернуться на главную страницу";
}
else
{
header( 'Location: index.html', true, 303 );
//echo "<p><b>Ошибка. Сообщение не отправлено!";
}