Jump to content

[SOLVED] Changing Email Script's Message Area


alconebay

Recommended Posts

I have this http://www.thewebhelp.com/php/php_contact_form_with_image_validation/ script setup and working on my site.

 

However, I would like to change the actual email received so that the IP address shows after the message, not before the message.

 

This is the part that formats the message (as far as I can tell). Whenever I rearrange the "$_SERVER['REMOTE_ADDR']" so its after $message I break the script...

 

mail("$email", 'Puplookup User Question: '.$subject, $_SERVER['REMOTE_ADDR']."\n\n".$message, "From: $from");

 

Thanks

Link to comment
Share on other sites

If I change it to this:

 

mail("$email", 'Puplookup User Question: '.$subject, $message . "  " . "IP address of sender: " . $_SERVER['REMOTE_ADDR'], "From: $from");

 

and I resend the form I get this:

 

Test.  IP address of sender: 66.135.29.186

 

Were those \n\n things important? If not, all I need it a suggestion on how to make a line break between the message and ip info.

Link to comment
Share on other sites

Haha, those "\n" things are a line break. I feel dumb. Changing the line to below did the trick:

 

mail("$email", 'Puplookup User Question: '.$subject, $message . "\n\n". "IP address of sender: " . $_SERVER['REMOTE_ADDR'], "From: $from");

 

How it was formatted:

 

Test.

 

IP address of sender: 66.135.29.186

 

Thanks for getting me on the right path conker87.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.