Hi

I have issue regarding the mail, which is not sending to my mail account.

1. <html>
2. <body>
3. <?php
4. if (isset($_POST))
5. //if "email" is filled out, send email
6. {
7. //send email
8. $email = $_POST ;
9. $subject = $_POST ;
10. $message = $_POST ;
11. mail( "yourname@example.com", "Subject: $subject",
12. $message, "From: $email" );
13. echo "Thank you for using our mail form";
14. }
15. else
16. //if "email" is not filled out, display the form
17. {
18. echo "<form method='post' action='phpmail.php'>
19. Email: <input name='email' type='text' /><br />
20. Subject: <input name='subject' type='text' /><br />
21. Message:<br />
22. <textarea name='message' rows='15' cols='40'>
23. </textarea><br />
24. <input type='submit' />
25. </form>";
26. }
27. ?></body>
28. </html>

plz anybody can figure it out why my mail is not receiving in my mail account.

Recommended Answers

All 3 Replies

$email = $_REQUEST['email'] ; 
 $subject = $_REQUEST['subject'] ;
$message = $_REQUEST['message'] ;
 mail( "yourname@example.com", $subject,$message, $email");
 echo "Thank you for using our mail form";

nevermind, my suggestion would work but I would have to rewrite you code. forget this post

Thanxs for replying

i got solution and my issue is been resolved

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.