Discussions
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
Customize Web Site Text for Webstore
The Webstore email messages we have currently says
--------------------------------------------------------
Dear {1},
Your order no. {2} has been fulfilled and shipped.
--------------------------------------------------------
In which the Web store order fulfilled email body. {1} is replaced with the customer name.
The issue is that Customer Name by default is set to eg: Dixon, Natalie showing the Lastname first, followed by Firstname.
I would like to change {1} to {Firstname} {Lastname} in the Customised Text message so it says
Dear Natalie Dixon,
What is the correct way to change the text to
Is it
Dear ${customer.firstName} ${customer.lastName},
or Dear <%=getCurrentAttribute('customer',customer.firstNa me)%> <%=getCurrentAttribute('customer',customer.lastNam e)%>