Witaj Gościu! ( Zaloguj | Rejestruj )

Forum PHP.pl

> Brak dostarczenia e-mailu., E-mail nie dochodzi.
ROBERTATSU
post
Post #1





Grupa: Zarejestrowani
Postów: 1
Pomógł: 0
Dołączył: 7.05.2017

Ostrzeżenie: (0%)
-----


Witam serdecznie. Wykonałem prosty skrypt typu "formularz kontaktowy". Wydaje mi się, że jest on dobrze wykonany, lecz wiadomość nie przychodzi na skrzynkę.

kontakt.php

  1. <?php
  2.  
  3. $nick = $_POST['nick'];
  4. $email = $_POST['email'];
  5. $message = $_POST['message'];
  6. $odkogo = "robertatsuope@gmail.com";
  7. $dokogo = "robert.paciorkowski@onet.pl";
  8. $tytul = "Money Lobby dla Ciebie";
  9.  
  10.  
  11. $wiadomosc = "";
  12. $wiadomosc .= "Imie i nazwisko: " . $nick . "\n";
  13. $wiadomosc .= "Email: " . $email . "\n";
  14. $wiadomosc .= "Wiadomość: " . $message . "\n";
  15.  
  16. $sukces = mail($dokogo, $tytul, $wiadomosc, "Od: <$odkogo>");
  17.  
  18.  
  19. ?>


index.html

  1. <!-- Kontakt -->
  2.  
  3. <div class="w3-container w3-light-grey w3-padding-32 w3-padding-large" id="kontakt">
  4. <div class="w3-content" style="max-width:600px">
  5. <h4 class="w3-center"><b>Kontakt</b></h4>
  6. <p>Chciałbyś się o coś zapytać lub zakupić naszą usługę? Pisz śmiało!</p>
  7. <form action="kontakt.php" target="_blank" method="post">
  8. <div class="w3-section">
  9. <label>Nick</label>
  10. <input class="w3-input w3-border" type="text" name="nick" required>
  11. </div>
  12. <div class="w3-section">
  13. <label>E-mail</label>
  14. <input class="w3-input w3-border" type="text" name="email" required>
  15. </div>
  16. <div class="w3-section">
  17. <label>Wiadomość</label>
  18. <input class="w3-input w3-border" type="text" name="message" required>
  19. </div>
  20. <button type="submit" class="w3-button w3-block w3-black w3-margin-bottom">Wyślij Wiadomość</button>
  21. </form>
  22. </div>
  23. </div>
  24.  
  25. <!-- Koniec kontaktu -->


Prosiłbym o pomoc, z góry dziękuje (IMG:style_emoticons/default/smile.gif)
Go to the top of the page
+Quote Post

Posty w temacie


Reply to this topicStart new topic
2 Użytkowników czyta ten temat (2 Gości i 0 Anonimowych użytkowników)
0 Zarejestrowanych:

 



RSS Aktualny czas: 20.09.2025 - 14:11