| what is the code for auto generated mail in php programming in making community kind or other website?explain

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:

  1. 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...
  2. 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...
  3. Where do I go to learn PHP, web programming, HTML, web servers, etc? D-A asked the question: I have no idea where I...
  4. Best website for RECENT articles & guides on PHP programming? Vas asked the question: I have come across several PHP...
  5. 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 , ,

Comments

One Response to “what is the code for auto generated mail in php programming in making community kind or other website?explain”

  1. prkushun on June 4th, 2008 7:10 am

    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.