The default Campaign Created Email Template shows the name of the Fulfillment Center as the sender of the email. You can change the template to sign off with the name of the parent store under which the campaign was created, using the variable site.parent_store.name.
Here is an example of how you can modify the default Campaign Created Template to show the name of the parent store instead of the Fulfillment Center:
Default Code
Code to be modified highlighted in red:
Sincerely,
{{ fulfillment_system.name }}
{{ message_plain }
Custom Code
Replace the code in red above with the code in red below, as follows:
Sincerely,
{% if site.parent_store %}
{{ site.parent_store.name }}
{% else %}
{{ site.name }}
{% endif %}
{{ message_plain }}
Comments
0 comments
Please sign in to leave a comment.