-
Email sender - Nobody?
I just set up an email thing from an online form using this function:
$sent = mail($sendTo, "Online Mortgage Application", $bodyText);
but the emails come in from "nobody" ... how do you set the sender up to give the company name?
thanks!
-
Try:
mail($sendTo, 'Online Mortgage Application', $bodyText, "From: $companyName <$companyEmail>\r\n");
-
Thanks Mark, I found the additional headers info about 10 minutes after I posted this! Works fine.
Thanks for the reply!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
Bookmarks