View difference between Paste ID: 9CPsH1Wk and NryPgqHz
SHOW: | | - or go back to the newest paste.
1
<?php
2
3
	$mittente = "mittente@mail.it";
4
	$destinatario = "destinatario@mail.it";
5
	$opzioniAggiuntive = "From: {$mittente}\r\n";
6
	
7
	$oggetto = "Oggetto della mail";
8
	$messaggio = "ciao, questo รจ il messaggio della mail.";
9
	
10
	// Invio della mail
11
	mail($destinatario, $oggetto, $messaggio, $opzioniAggiuntive);
12
13
?>