What's your biggest current challenge? Have your say in Community Polls along the right column.

Re: Customize the default email invoice notification for just B2B customers?

Solved

Customize the default email invoice notification for just B2B customers?

tanya12
Excursionist
25 1 44

Hi there! I am wondering if there is a way to customize the default Shopify Draft Order Invoice notification with slightly different messaging for B2B customers only?

The issue is that when we send the invoice for their order, customers are completing payment right away but their payment is not due until after the order ships. This is because we need to adjust cost to add in the shipping quote for large bulk orders.

Is adding special messaging for just B2B customers and keeping the rest of the content the same for everyone else possible to do? Is there anyone who has done something like this, and might have an example of how it could be done?

 

Thank you for your help! 

Accepted Solution (1)

PaulNewton
Shopify Partner
7481 660 1568

This is an accepted solution.

Hi @tanya12 Yes possible, could even have a condition for an entirely different layout*.

See the liquid variables reference for draft-order notification templates for b2b? and company vars

https://help.shopify.com/en/manual/fulfillment/setup/notifications/email-variables#draft-order-prope... 

 

Or at minimum tag such customers and use tags in logic to hide the invoice_url in the initial email.

Then resend or send a different email to collect payment.

 

If you need notification customizations then contact me for services
Contact info in forum signature.
ALWAYS please provide context, examples: store url, theme name, post url(s) , or any further detail in ALL correspondence.

 

 

*different content example

i.e.

 

{% if b2b? %}

<!DOCTYPE html>
<html lang="en">
<head>
<title>B2b Net payment terms - {{ email_title }}</title>

{% else %}

<!DOCTYPE html>
<html lang="en">
<head>
<title>{{ email_title }}</title>

{% endif %}

 

 

 

Contact paull.newton+shopifyforum@gmail.com for the solutions you need


Save time & money ,Ask Questions The Smart Way


Problem Solved? ✔Accept and Like solutions to help future merchants

Answers powered by coffee Thank Paul with a Coffee for more answers or donate to eff.org


View solution in original post

Replies 2 (2)

PaulNewton
Shopify Partner
7481 660 1568

This is an accepted solution.

Hi @tanya12 Yes possible, could even have a condition for an entirely different layout*.

See the liquid variables reference for draft-order notification templates for b2b? and company vars

https://help.shopify.com/en/manual/fulfillment/setup/notifications/email-variables#draft-order-prope... 

 

Or at minimum tag such customers and use tags in logic to hide the invoice_url in the initial email.

Then resend or send a different email to collect payment.

 

If you need notification customizations then contact me for services
Contact info in forum signature.
ALWAYS please provide context, examples: store url, theme name, post url(s) , or any further detail in ALL correspondence.

 

 

*different content example

i.e.

 

{% if b2b? %}

<!DOCTYPE html>
<html lang="en">
<head>
<title>B2b Net payment terms - {{ email_title }}</title>

{% else %}

<!DOCTYPE html>
<html lang="en">
<head>
<title>{{ email_title }}</title>

{% endif %}

 

 

 

Contact paull.newton+shopifyforum@gmail.com for the solutions you need


Save time & money ,Ask Questions The Smart Way


Problem Solved? ✔Accept and Like solutions to help future merchants

Answers powered by coffee Thank Paul with a Coffee for more answers or donate to eff.org


tanya12
Excursionist
25 1 44

Thank you - this is super helpful info - I was able to add an additional note that comes up for B2B only!