Last active
February 8, 2020 11:01
-
-
Save loschke/425ad9a1711cd611711844523c2aea84 to your computer and use it in GitHub Desktop.
Revisions
-
Rico revised this gist
Feb 8, 2020 . No changes.There are no files selected for viewing
-
Rico renamed this gist
Feb 8, 2020 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Rico renamed this gist
Feb 8, 2020 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Rico revised this gist
Feb 8, 2020 . No changes.There are no files selected for viewing
-
Rico revised this gist
Feb 3, 2020 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,4 @@ <?php // Ausführen wenn Formular gesendet if (isset($_POST["submit"])) { @@ -22,4 +23,5 @@ Nachricht: $nachrichtn // Verschicken der Mail mail($an, $betreff, $message, $mail_header ); }; ?> -
Rico created this gist
Feb 3, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ <form id="form" action="form2email.php" method="post"> <label for="name">Name</label> <input id="name" name="name" size="25" type="text" /> <label for="email">Email</label> <input id="email" name="email" size="25" type="text" /> <label for="betreff">Betreff</label> <input id="betreff" name="betreff" size="25" type="text" /> <label for="nachricht">Nachricht</label> <textarea id="nachricht" cols="50" rows="6" name="nachricht"></textarea> <input id="submit" name="submit" type="submit" value="Formular senden" /> </form> This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ // Ausführen wenn Formular gesendet if (isset($_POST["submit"])) { // Sammeln der Formulardaten $an = "meine@email.de"; $name = $_POST['name']; $email = $_POST['email']; $betreff = $_POST['betreff']; $nachricht = $_POST['nachricht']; // Mailheader UTF-8 fähig machen $mail_header = 'From:' . $email . "n"; $mail_header .= 'Content-type: text/plain; charset=UTF-8' . "rn"; // Nachrichtenlayout erstellen $message = " Name: $namen Email: $emailn Nachricht: $nachrichtn "; // Verschicken der Mail mail($an, $betreff, $message, $mail_header ); };