FAQ |
Lista utenti |
Gruppi sociali |
Calendario |
Cerca |
Messaggi odierni |
|
|
LinkBack | Strumenti della discussione | Modalità di visualizzazione |
|
|||
![]()
[lang=en]<html>
<body> <?php if (isset($_REQUEST['email'])) //if "email" is filled out, send email { //send email $email = $_REQUEST['email'] ; $subject = $_REQUEST['subject'] ; $message = $_REQUEST['message'] ; mail( "someone@example.com", "Subject: $subject", $message, "From: $email" ); echo "Thank you for using our mail form"; } else //if "email" is not filled out, display the form { echo "<form method='post' action='mailform.php'> Email: <input name='email' type='text' /><br /> Subject: <input name='subject' type='text' /><br /> Message:<br /> <textarea name='message' rows='15' cols='40'> </textarea><br /> <input type='submit' /> </form>"; } ?> </body> </html>[/lang] |
|
|
![]() |
||||
Discussione | Forum | |||
Come modificare il form mail in php per fare redirect | Informatica | |||
Thunderbird che inserisce testo copiato/selezionato in mail | Informatica | |||
Inserire lista di indirizzi in mail con Mozilla Thunderbird | Informatica | |||
Salvare mail da Mozilla Thunderbird con il nome dell'oggetto | Informatica | |||
Come eliminare tutti i destinatari Thunderbird da una mail? | Informatica |