Stworzyłem formularz kontaktowy i nie wiem ja podpiąć żeby wiadomości zostały wysyłane na maila.
<!DOCTYPE HTML> <html lang="pl"> <head> <meta charset="utf-8" /> <title>formularz</title> <meta name="description" content="formularz" /> <meta name="keywords" content="formularz" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <link rel="stylesheet" href="style.css" type="text/css" /> </head> <body> <div id="container"> <form> <input type="name" placeholder="imie i nazwisko" onfocus="this.placeholder=' '" onblur="this.placeholder='imie i nazwisko'"> <input type="email" placeholder="email"onfocus="this.placeholder=' '" onblur="this.placeholder='email'"> <textarea name="messange" placeholder="napisz tu wiadomość" onfocus="this.placeholder=' '" onblur="this.placeholder='napisz tu wiadomość'"></textarea> <input type="submit" value="wyślij"> </form> </div> </body> </html>