PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
Moderator: General Moderators
xLechugasx
Forum Newbie
Posts: 14 Joined: Wed Aug 28, 2002 9:56 am
Post
by xLechugasx » Wed Aug 28, 2002 4:26 pm
How can I specify using the mail function, the sender address?
If I cannot, which other function can I use?
Takuma
Forum Regular
Posts: 931 Joined: Sun Aug 04, 2002 10:24 am
Location: UK
Contact:
Post
by Takuma » Wed Aug 28, 2002 4:30 pm
Code: Select all
mail("DESTINATION","SUBJECT","MESSAGE","From: SENDER'S ADDRESS");
example,
Code: Select all
mail("mail@ticktaku2000.com","Hello","hiya","From: ticktaku2k@hotmail.com");
xLechugasx
Forum Newbie
Posts: 14 Joined: Wed Aug 28, 2002 9:56 am
Post
by xLechugasx » Wed Aug 28, 2002 6:37 pm
Thank you very much!