-1

Please how do I change the order and shipment mailer notification to show the users Name in the salutation instead of 'Dear Customer'

2 Answers2

2

Or you could use string interpolation in this case:

<%= "Dear #{@username}" %>

String concatenation vs. interpolation in Ruby

Community
  • 1
  • 1
Long Tran
  • 83
  • 1
  • 8
0

Do this way

<%= "Dear " + @username %>
Rajdeep Singh
  • 17,174
  • 6
  • 49
  • 74