Quantcast
Channel: Forum Pasja Informatyki - Najnowsze pytania i odpowiedzi
Viewing all articles
Browse latest Browse all 83164

Jak zrobić by z formularza na stronie wysyłać na pocztę?

$
0
0

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>

 


Viewing all articles
Browse latest Browse all 83164