Hi All,
I am a newbie here, I have been modifying various code in our webshop and i am having trouble with some PHP code, that I am hoping may be able to get some help/assistance guidance. I have not been able to get the code right for some reason.
Anyway I wanted to input a friendly greeting on the email that gets sent after a customer places an order so I have tried to enter this, but does not seem to come up. Do i need to enter this as a function or something? See the full code below where I inserted into the PHP.
Any help would be greatly appreciated!!!
Thanks in Advance!
echo(‘Thank you for your valued order, which will be depatched as soon as possible. Please find below details of your order. If you have any queries please contact us on 1300 131 545’);
[php]*/
define(‘EMAIL_TEXT_SUBJECT’, ‘Order Process’);
echo(‘Thank you for your valued order, which will be depatched as soon as possible. Please find below details of your order. If you have any queries please contact us on 1300 555 555’);
define(‘EMAIL_TEXT_ORDER_NUMBER’, ‘Order Number:’);
define(‘EMAIL_TEXT_INVOICE_URL’, ‘Detailed Invoice:’);
define(‘EMAIL_TEXT_DATE_ORDERED’, ‘Date Ordered:’);
define(‘EMAIL_TEXT_PRODUCTS’, ‘Products’);
define(‘EMAIL_TEXT_SUBTOTAL’, ‘Sub-Total:’);
define(‘EMAIL_TEXT_TAX’, 'Tax: ');
define(‘EMAIL_TEXT_SHIPPING’, 'Shipping: ');
define(‘EMAIL_TEXT_TOTAL’, 'Total: ');
define(‘EMAIL_TEXT_DELIVERY_ADDRESS’, ‘Delivery Address’);
define(‘EMAIL_TEXT_BILLING_ADDRESS’, ‘Billing Address’);
define(‘EMAIL_TEXT_PAYMENT_METHOD’, ‘Payment Method’);
define(‘EMAIL_SEPARATOR’, ‘------------------------------------------------------’);
define(‘TEXT_EMAIL_VIA’, ‘via’);
define(‘TEXT_SHIPWIRE_TRANSACTION_ID’, 'Shipwire Fullfillment Transaction Successful. Transaction ID: ');
?>[/php]