Jump to content

Quick Email Script Question!


gl_itch

Recommended Posts

Hi, Im a bit of a newb with PHP so Im hoping you guys can help....

This script sends an email to my address with the users already entered variables. I use this to basically keep record.

My script is as follows:
[code]$msg="\n".date("m/d/Y")."\n".date("h/i/A")."\n".$_POST['first_name']." ".$_POST['last_name']."\n".$_POST['payer_email']."\n".$_POST['custom'];
        mail("[email protected]",date("m/d/Y")",$msg,"from: [email protected]");[/code]

Now as you can see in the last line, the subject right now just posts the date, so the message's subject would read "04/11/06", I want the subject to be "Purchase 04/11/06"

How can I do this? No matter how I enter it, I get an error.

Thanks in advanced.



Link to comment
https://forums.phpfreaks.com/topic/7156-quick-email-script-question/
Share on other sites

[!--quoteo(post=363856:date=Apr 11 2006, 07:16 PM:name=gl_itch)--][div class=\'quotetop\']QUOTE(gl_itch @ Apr 11 2006, 07:16 PM) [snapback]363856[/snapback][/div][div class=\'quotemain\'][!--quotec--]
Hi, Im a bit of a newb with PHP so Im hoping you guys can help....

This script sends an email to my address with the users already entered variables. I use this to basically keep record.

My script is as follows:
[code]$msg="\n".date("m/d/Y")."\n".date("h/i/A")."\n".$_POST['first_name']." ".$_POST['last_name']."\n".$_POST['payer_email']."\n".$_POST['custom'];
        mail("[email protected]",date("m/d/Y")",$msg,"from: [email protected]");[/code]

Now as you can see in the last line, the subject right now just posts the date, so the message's subject would read "04/11/06", I want the subject to be "Purchase 04/11/06"

How can I do this? No matter how I enter it, I get an error.

Thanks in advanced.
[/quote]

I am not in a place where i can test it but try this.

[code]$msg="\n".date("m/d/Y")."\n".date("h/i/A")."\n".$_POST['first_name']." ".$_POST['last_name']."\n".$_POST['payer_email']."\n".$_POST['custom'];
$date = date('m/d/Y');
        mail("[email protected]","Purchased $date","$msg","from: [email protected]");[/code]

[!--quoteo(post=363857:date=Apr 11 2006, 07:40 PM:name=kc5tvd)--][div class=\'quotetop\']QUOTE(kc5tvd @ Apr 11 2006, 07:40 PM) [snapback]363857[/snapback][/div][div class=\'quotemain\'][!--quotec--]
I am not in a place where i can test it but try this.

[code]$msg="\n".date("m/d/Y")."\n".date("h/i/A")."\n".$_POST['first_name']." ".$_POST['last_name']."\n".$_POST['payer_email']."\n".$_POST['custom'];
$date = date('m/d/Y');
        mail("[email protected]","Purchased $date","$msg","from: [email protected]");[/code]
[/quote]

Ive tried that, I get a parse error. Even Purchase $date("m/d/Y") does the same.

Any other ideas? Anyone? Thanks in advanced.
[!--quoteo(post=363859:date=Apr 11 2006, 07:44 PM:name=gl_itch)--][div class=\'quotetop\']QUOTE(gl_itch @ Apr 11 2006, 07:44 PM) [snapback]363859[/snapback][/div][div class=\'quotemain\'][!--quotec--]
Ive tried that, I get a parse error. Even Purchase $date("m/d/Y") does the same.

Any other ideas? Anyone? Thanks in advanced.
[/quote]


Got it, it should have been: "Purchase " . date("m/d/Y")

Thanks.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.