Hi,
I have a config.php file and one line has text that is in an email which is sent.
I would like to make that one line into maybe 4 lines of info in the email including with a http://www. url.
How can I do it please?
define('NOTIFY_MESSAGE','A user want you to process payment via their credit card:');
//subject and body for users notification
define('UNOTIFY_SUBJ','From My website: You have requested a response');
This line below gives me one line in the email , how do I increase the lines of text with line breaks?
define('UNOTIFY_MESSAGE','You have requested a response');
THanks
oz :-)