I've been trying to look this up for a while but can't seem to find it.
is there a way to specify the smtp server the php mail function shoudl point too?
any help will be great![Smile :) :)](data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
is there a way to specify the smtp server the php mail function shoudl point too?
any help will be great
Code:
$headers ='MIME-Version: 1.0' . "\r\n";
$headers .= "From: me@domain.com";
$subject="testing sugar email service";
$body ="testing 123";
mail("toaddress@domain.com", $subject, $body, $headers);