Email invite customisation for wholesale customers

Created by Gosia Furmanik, Modified on Thu, 3 Apr at 9:59 PM by Gosia Furmanik



You can customise your email invite for customers marked as wholesaler to create a password or log in to your Shopify store. 



Step 1- Go to Settings on your Shopify store. 


Step 2 - Navigate to "Notifications' in the left-hand side nav bar. 


Step 3 - Click on 'Customer notifications'




Step 4 - Scroll down to the Accounts and outreach and click on "Customer account invite"




Step 5 - Click on 'Edit code'




Step 6 - You need to copy over this code and paste to you email invite template to customise it for wholesale customers. Once done, press 'Save'




{% if customer.tags contains 'FenaWholesale' %}
  {% capture email_title %}Welcome to your trade account with {{ shop.name }}.{% endcapture %}
  {% capture email_body %} 
    Hello {{ customer.name }},<br>
    You have been approved for a wholesaler trade account with {{ shop.name }}. 
    All you have to do is activate it by creating a password.
    {% endcapture %}

  <h2>{{ email_title }}</h2>
  <p>{{ email_body }}</p>

  <p>
    <a href="{{ shop.url }}/pages/create-password-for-wholesale-account" class="button"> Activate your account </a>
  </p>
{% endif %}

{% capture email_title %}Activate your account{% endcapture %}
{% capture email_body %}Hi, you've created a new customer account at <a href="{{shop.url}}">{{shop.name}}</a>. All you have to do is activate it.{% endcapture %}

<!doctype html>
<html lang="en">
  <head>
    <title>{{ email_title }}</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <meta name="viewport" content="width=device-width">
    <link rel="stylesheet" type="text/css" href="/assets/notifications/styles.css">
    <style>
      .button__cell { background: {{ shop.email_accent_color }}; }
      a, a:hover, a:active, a:visited { color: {{ shop.email_accent_color }}; }
    </style>
  </head>

  <body>
    <table class="body">
      <tr>
        <td>
          <table class="header row">
            <tr>
              <td class="header__cell">
                <center>
                  <table class="container">
                    <tr>
                      <td>
                        <table class="row">
                          <tr>
                            <td class="shop-name__cell">
                              {%- if shop.email_logo_url %}
                                <img
                                  src="{{shop.email_logo_url}}"
                                  alt="{{ shop.name }}"
                                  width="{{ shop.email_logo_width }}"
                                >
                              {%- else %}
                                <h1 class="shop-name__text">
                                  <a href="{{shop.url}}">{{ shop.name }}</a>
                                </h1>
                              {%- endif %}
                            </td>
                          </tr>
                        </table>
                      </td>
                    </tr>
                  </table>
                </center>
              </td>
            </tr>
          </table>

          <table class="row content">
            <tr>
              <td class="content__cell">
                <center>
                  <table class="container">
                    <tr>
                      <td>
                        <h2>{{ email_title }}</h2>
                        {% if custom_message != blank %}
                          <p>{{ custom_message }}</p>
                        {% else %}
                          <p>{{ email_body }}</p>
                        {% endif %}
                        <table class="row actions">
                          <tr>
                            <td class="empty-line">&nbsp;</td>
                          </tr>
                          <tr>
                            <td class="actions__cell">
                              <table class="button main-action-cell">
                                <tr>
                                  <td class="button__cell">
                                    <a href="{{ customer.account_activation_url }}" class="button__text"
                                      >Activate your account</a
                                    >
                                  </td>
                                </tr>
                              </table>
                              {% if shop.url %}
                                <table class="link secondary-action-cell">
                                  <tr>
                                    <td class="link__cell">or <a href="{{ shop.url }}">Visit our store</a></td>
                                  </tr>
                                </table>
                              {% endif %}
                            </td>
                          </tr>
                        </table>
                      </td>
                    </tr>
                  </table>
                </center>
              </td>
            </tr>
          </table>
          <table class="row footer">
            <tr>
              <td class="footer__cell">
                <center>
                  <table class="container">
                    <tr>
                      <td>
                        <p class="disclaimer__subtext">
                          If you have any questions, reply to this email or contact us at
                          <a href="mailto:{{ shop.email }}">{{ shop.email }}</a>
                        </p>
                      </td>
                    </tr>
                  </table>
                </center>
              </td>
            </tr>
          </table>

          <img src="{{ 'notifications/spacer.png' | shopify_asset_url }}" class="spacer" height="1">
        </td>
      </tr>
    </table>
  </body>
</html>


Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article