Re: [PHP-LANG] how can I send a e-mail with the sender's address is my company's e-mail ???
[email protected] ("Nick")
| Newsgroups | php.lang |
|---|---|
| Message-ID | <[email protected]> |
the mail() function has a fourth optional argument, $header. Give it a
string with any email headers you want included.
One of these headers is "From:". Each header must be separated with a
newline.
so, using your example, you need to add the fourth argument:
$result = mail("[email protected]" , "E-mail Test" , "this e-mail is sent by
php","From: [email protected]")
for more information, RTFM.
:-)
hope that helps.
"Bass¨Ð¦õªv" <[email protected]> wrote in message
news:[email protected]...
> Hi ,
>
> My copmany have a website and is hosted on a web server of some web
hosting
> company .
> I want to use PHP to send e-mail on that server .
> I use
>
> $result = mail("[email protected]" , "E-mail Test" , "this e-mail is sent by
php")
> ;
>
> to do it .
>
> But when I receive the e-mail , the SENDER 's address is the server's
domain
> name !
> such as '[email protected]'
>
> It's a large problem if I send a e-mail to my clients with this cos they
> won't know
> who send the e-mail !!
>
> how can I send a e-mail with the sender's address is my company's e-mail
???
> for exmaple ' [email protected] '??
>
> THX A LOT
>
>
>
> --
> PHP Language Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
> To contact the list administrators, e-mail: [email protected]
>