G
Guest
I'm changing our order confimation from a plain text to HTML. The original
setup of this had carriage returns between line items. These are not
interpreted by HTML so all the line items run together.
Here is the code that produces the body of the message.
msg.Body = string.Format(body, values);
return msg;
Is there a method of Format to allow this kind of search and replace or
would I need to add a step to evaluate the values and replace them before
commiting them to msg.Body?
setup of this had carriage returns between line items. These are not
interpreted by HTML so all the line items run together.
Here is the code that produces the body of the message.
msg.Body = string.Format(body, values);
return msg;
Is there a method of Format to allow this kind of search and replace or
would I need to add a step to evaluate the values and replace them before
commiting them to msg.Body?