The "Freeola Customer Forum" forum, which includes Retro Game Reviews, has been archived and is now read-only. You cannot post here or create a new thread or review on this forum.
Here's a catch, though. For the mail() function to work properly, you'll need to have specified a working local mail server in the php.ini file. There should already be a section looking like this.
[mail function]
SMTP = localhost ;for win32 only
sendmail_from = [email protected] ;for win32 only
;sendmail_path = ;for unix only, may supply arguments as well (default is 'sendmail -t
If you specify a remote SMTP outgoing server to relay your e-mail messages (which you can only do if you're running PHP on Windows), the server must be configured to allow relays; otherwise your e-mail messages will get bounced.
------------------------------------------------------
Now, what does this actually mean? Could someone tell me because I just have not got a clue. Thanks.
Sorry for the spelling too .... really not my day today :o(.
> For the mail() function to work properly, you'll
> need to have specified a working local mail server
> in the php.ini file.
You don't need to worry about this because you have no access to Freeola's php.ini file. It is already set up correctly for their own SMTP (outgoing) email server.
Chris.
In my email script, I just put values into variables:
"$emailto", to hold the destination email address,
"$sendto", the destination person's name,
"$message", the text itself,
"$name", the name of the person sending the feedback,
"$email", the email address of that person
then
mail ("$emailto", "Website feedback to $sendto", "$message","From: $name <$email>\nX-Sender: <$email>");
Here's a catch, though. For the mail() function to work properly, you'll need to have specified a working local mail server in the php.ini file. There should already be a section looking like this.
[mail function]
SMTP = localhost ;for win32 only
sendmail_from = [email protected] ;for win32 only
;sendmail_path = ;for unix only, may supply arguments as well (default is 'sendmail -t
If you specify a remote SMTP outgoing server to relay your e-mail messages (which you can only do if you're running PHP on Windows), the server must be configured to allow relays; otherwise your e-mail messages will get bounced.
------------------------------------------------------
Now, what does this actually mean? Could someone tell me because I just have not got a clue. Thanks.