We currently have a work flow to send an email con...
# general
k
We currently have a work flow to send an email confirmation to a customer after a sales order is created. How can I add the SO# in the subject line or the body?
t
${transaction.tranId}
For example- Subject line could be Sales Order #${transaction.tranId}
k
@Tim Chapman hmmm doesn’t seem to be working
t
The field shows up blank in the email?
d
switch to using a template. You can definitely do what Tim's talking about in an email template
m
Hi @Kendra Borkholder it's just {tranid}. So your subject field in the configuration would read "We've received your order! {tranid}" And the {tranid} would get replaced with the current record transaction number
👍🏻 1
Works in the body of the email as well (Also you can use any field from your record in this same way, ie {entity}, {amount}, {terms} etc
k
@MGBC THANK YOU! this worked !
m
👍