Akenatehm Posted November 29, 2008 Share Posted November 29, 2008 Hey Guys. I need to make a few adjustments to my php contact form script. I need it to redirect to a thank you page and when i send email it comes formatted wierdly. I want each topic on a new line. But it has random spaces between them. Here is the area of code for that: $subject = "Contact Enquiry From: '$email'"; $message = "Name: '$name' \n Email: '$email' \n Description: '$description;' \n"; $from = "From: '$email' \n"; mail ("[email protected]" , $subject, $message, $from); Link to comment https://forums.phpfreaks.com/topic/134729-minor-contact-form-details/ Share on other sites More sharing options...
Akenatehm Posted November 29, 2008 Author Share Posted November 29, 2008 Corbin fixed the redirect problem. Thanks. Now just the formatting part. Link to comment https://forums.phpfreaks.com/topic/134729-minor-contact-form-details/#findComment-701568 Share on other sites More sharing options...
Akenatehm Posted November 29, 2008 Author Share Posted November 29, 2008 Anyone? Link to comment https://forums.phpfreaks.com/topic/134729-minor-contact-form-details/#findComment-701578 Share on other sites More sharing options...
Akenatehm Posted November 29, 2008 Author Share Posted November 29, 2008 Hello?? Link to comment https://forums.phpfreaks.com/topic/134729-minor-contact-form-details/#findComment-701596 Share on other sites More sharing options...
corbin Posted November 29, 2008 Share Posted November 29, 2008 You have a literal line break, and another line break, and then you have some tabs.... Try: $message = "Name: '$name'\n Email: '$email'\n Description: '$description;'\n"; Link to comment https://forums.phpfreaks.com/topic/134729-minor-contact-form-details/#findComment-701736 Share on other sites More sharing options...
Akenatehm Posted November 29, 2008 Author Share Posted November 29, 2008 Ok, I tried that but it outputs as: Name: 'test' Email: '[email protected]' Description: 'test;' I want it to all be lined up together up against the left side. Link to comment https://forums.phpfreaks.com/topic/134729-minor-contact-form-details/#findComment-701813 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.