Mail Snippets Social Links

Is it possible to have the icons in the email footer snippet link to the facebook/twitter websites for the store they belong to?

By default the facebook icon just links to facebook.com. How to link it for store1 to facebook.com/store1 and for store2 to facebook.com/store2

You can add condition by company_id

{% if company_data.company_id == 123 %}
... code for company with ID = 123....
{% else %}
... code for other store-fronts....
{% endif %}

Having some issues with this.

I think it should be something like this, but that's not working.

 {% if company_data.company_id = 10 %}

{% else %}

{% endif %}
 

Try to use double "=" symbol in the condition