---
title: "PHP send mail error"  
description: "PHP send mail error"  
author: "Anonymous User"  
published: 2011-01-01  
updated: 2011-01-01  
canonical: https://www.mindstick.com/forum/139/php-send-mail-error  
category: "php"  
tags: ["php"]  
reading_time: 1 minute  

---

# PHP send mail error

Hi guys please i need your help . i created a [HTML](https://www.mindstick.com/articles/1530/design-a-simple-stylish-calculator-using-html-css-and-javascript)/PHP form . The PHP form handles [posting](https://www.mindstick.com/forum/34719/cross-page-posting) to my mail while the HTML is the front face / webpage . Anyway i created a form that has [fields](https://www.mindstick.com/forum/159126/sql-query-for-all-tables-and-fields-in-an-oracle-db) such as name ([textbox](https://www.mindstick.com/forum/12714/dynamic-textbox-in-gridview)), [email](https://www.mindstick.com/articles/12870/10-easy-ways-to-manage-your-business-email-inbox)(textbox) , inquiry([textarea](https://www.mindstick.com/forum/155821/how-we-will-generate-textarea-control-using-htmlhelper-in-razor-view)) , state (textbox) [country](https://yourviews.mindstick.com/view/85543/do-you-think-that-french-will-be-islamic-country) ([dropdown list](https://www.mindstick.com/forum/760/dropdown-list-open-hide-behind-another-dropdown-list-on-ie-7) ) , how did you find us (dropdown list). However whenever i test the form all it [posts](https://www.mindstick.com/news/1939/as-market-for-digital-collectibles-tanks-meta-linked-instagram-s-nft-posts-to-facebook) to my mailbox is name , email , inquiry . Please how do i make the other fields get recognized / how do i get the details in the other fields to be posted to my mailbox.\

```
<?php$name =  $_POST['username'];$email = $_POST['email'];$text = $_POST['inquiry'];//To, Subject, Message, Headermail('support@mysite.com','basic inquiry',"$text",'From: '. $name .'<' . $email  . '>');header('location: step3.html')?>
```


---

Original Source: https://www.mindstick.com/forum/139/php-send-mail-error

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
