I need to check that I have written the correct code in config.php for the subject line of the email that Machform sends out: It is a mixture of variable names and normal text as in:
define('NOTIFICATION_MAIL_SUBJECT','New Submissions from' {form_name} '[#',{entry_no}); //default is '{form_name} [#{entry_no}]'
Is the above correct, or should it be:
define('NOTIFICATION_MAIL_SUBJECT','New Submissions from {form_name} #{entry_no}');
Do the single quotes have to be around the normal text or just the beginning and end of the string in the "define" line?
Off topic here, but how do you do the black background and white text for your code snippets in these postings - I tried an inline style inside the blockquote tag but the bbPress board must strip it before it posts it.