HELP PHP FORM SHOWING SERVER INFORMATION IN EMAIL?!?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
User avatar
Celauran
Moderator
Posts: 6427
Joined: Tue Nov 09, 2010 2:39 pm
Location: Montreal, Canada

Re: HELP PHP FORM SHOWING SERVER INFORMATION IN EMAIL?!?

Post by Celauran »

Use the additional headers in your mail call.

Code: Select all

mail($to, $subject, $message, 'From: someone@somewhere.com');
Post Reply