View Single Post
Old 05-03-2006, 02:29 AM  
vantage
Confirmed User
 
Join Date: Jun 2005
Location: BERLIN :: GERMANY
Posts: 214
This is a PHP problem not a Postfix problem.
Try this:

PHP Code:
$Mail_to '[email protected]';
$subject'This is my subject...';
$Message'Hi, this is my mail message....';
$header 'From: [email protected]"\r\n" .
   
'Reply-To: [email protected]"\r\n" .
   
'X-Mailer: PHP/' phpversion();

mail($Mail_to$subject$Message$header); 
__________________
vantage is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote