what is the code for auto generated mail in php programming in making community kind or other website?explain
Dine asked the question:
what is the code for auto generated mail in php programming in making community kind or other website?explain
Related posts:
- what is code for auto generated mail in php programming?how to write code for this? Dine asked the question: what is code for auto generated...
- How to fetch a existing rss feed from a website using php. The input for the program must be the website url? karthik mk asked the question: The(php) program input must the...
- Where do I go to learn PHP, web programming, HTML, web servers, etc? D-A asked the question: I have no idea where I...
- Best website for RECENT articles & guides on PHP programming? Vas asked the question: I have come across several PHP...
- Best website for RECENT articles & guides on PHP programming? Vas asked the question: I have come across several PHP...
Filed Under Programming & Design |
Tagged With Auto Mail, Mail Php, Php Programming
Comments
One Response to “what is the code for auto generated mail in php programming in making community kind or other website?explain”
I don’t fully understand your question, but if you want to send an e-mail in php, use the mail function:
mail(”youremail@email.com”, “Subject Line”, “E-mail message Text”, “From: Your Name “);
The parameters are all strings, so you can build them in your code by taking them from a form.