This is more of a "best practices" question.
I have a few email templates, that have several tags I need to find and replace.
For example:
Dear [[customername]],
Blah blah blah blah, and more blah.
Your Invoice....
----------------------------------------------------------
Order Status: [[orderstatus]]
Order Number: [[orderid]]
Date Ordered: [[dateordered]]
Payment Method: [[paymentmethod]]
Billing Statement: [[billingstatement]]
Anyway, I have several of these tags inside double brackets. So I'm using a simple: $text = str_replace($oldWord , $newWord , $text);
I'm sure this is the normal way to do this, but I am just curious if someone has thoughts on a different way. Otherwise, I'll stick with what I'm doing.