I am trying to send automated emails with a clean "From" address. When it sends the email its using the name I want with @my-website.com attached right after, how do I get rid of it?
Example
$address = "[email protected]"; $subject = "Confirmation"; $msg = "Registered"; $headers = "From: MyWebsite \r\n"; mail($address, $subject, $msg, $headers); The result I get in my inbox when I test it is, [email protected] instead of just MyWebsite