# Reminder Emails

*Article Topics:* [*Emails*](/getting-started/common-topics/emails.md)*,* [*Customization*](/getting-started/common-topics/customization.md)

Reminder Emails can be sent to individuals to remind them of certain information or actions such as when they have joined a site, canceled a membership, or if they have insufficient funds.&#x20;

## Disclaimer

The restrictions being provided by your bank & Mastercard are a business decision you will need to decide on how to handle.

If you are using a 3rd party biller (biller hosts credit card form), such as [Epoch](/getting-started/integrations/supported-billers/epoch.md), [Segpay](/getting-started/integrations/supported-billers/segpay.md), [CCBill](/getting-started/integrations/supported-billers/ccbill.md), we recommend reaching out to those billers directly to handle the reminder email before the rebill.

NATS does not know whether a member signs up using Mastercard or not. This information is stored only at your merchant and not in NATS.

If you are using a gateway biller (join form hosted by NATS that sends transaction info to biller), such as [NETbilling](/getting-started/integrations/supported-billers/netbilling.md), [RocketGate](/getting-started/integrations/supported-billers/rocketgate.md), [Bill1st](/getting-started/integrations/supported-billers/bill1st-gateway.md), [Argus](/getting-started/integrations/supported-billers/argus.md), we would recommend reaching out to those billers directly to ask them if they have any systems in place to handle these reminder emails.

If your billers does not have a method to do so, you can configure NATS mails to achieve a similar outcome.

## Site Member Emails

One way to use Reminder Emails is to provide a welcome email when a member joins your site.&#x20;

This must first be enabled by navigating to the [Sites Admin](/nats-admin/sites.md), selecting the appropriate [Tour](/nats-admin/sites/site-management/tour-overview.md), and clicking the Email tab.

<figure><img src="/files/lP0WdgzTCpPCr661uBXA" alt=""><figcaption></figcaption></figure>

Once there, select the "Not Set" option to change the subject for "Member Join ALL Billers" then enable the Email by clicking the "No" option under the Enabled column and changing it to "Yes."

<figure><img src="/files/0UYHbSojNNPuC8EmE2Ls" alt=""><figcaption></figcaption></figure>

While here, you can click on the cog next to"mail\_member\_join" and select "Customize Template" to change and edit the format of the email that will be sent.&#x20;

<figure><img src="/files/6amVW1dvyXDwFc4JSJkB" alt=""><figcaption></figcaption></figure>

Here you can customize the template to provide any message you find appropriate.&#x20;

To learn more about Templates, see [Site Templates](/nats-admin/sites/site-templates.md).

<figure><img src="/files/qOrx7gU5EbXfgYEQZ8OB" alt=""><figcaption></figcaption></figure>

### Additional Information in your Email

Additional information can also be provided in your emails using Smarty variables.&#x20;

on your site level 'mail\_member\_joined' template when the member has joined a trial option.

using the smarty variable $member.trial:

```
{if $member.trial == 1}
```

( <https://www.smarty.net/docsv2/en/language.function.if> )

For example, if you would like to include the additional text "You have signed up for a trial membership, and you will be rebilled tomorrow", you can add this condition in between your existing email body: (using the default template 'mail\_member\_joined' contents to construct this example for you)

{% code overflow="wrap" %}

```
Hello,
 
Thank you for joining our site!

{if $member.trial==1}
<!--trial members-->
<p>"You have signed up for a trial membership, and you will be rebilled tomorrow"</p>
{/if}

{*Possible Variables: (see side list for complete details)*}
Site Name: {$details.siteid.name}
Biller Name: {$details.billerid.biller}
Biller Subscription ID: {$member.memberidx}
Member Data:
Username: {$member.username}
Password: {$member.password}
```

{% endcode %}

If you need to display NATS join option rebill data on the member joined template, you would first need to take the optionid: {$member.optionid} Then pass it through the {[nats\_get\_option\_details](/nats-admin/skins-and-templates/further-reading/template-functions/nats_get_option_details.md)} call. This will allow you to get information like "rebill" (amount) and "rebill\_days" (length)&#x20;

For example, you would add the following near the top of your template:

```
{nats_get_option_details optionid=$member.optionid}
```

This will then allow you to access the {$option\_details} array further down in your template.

In a sentence for example, it would look like this:

The renewal amount of this transaction is {$option\_details.rebill}.

## Mass Mailer Reminder

Another option is to use the NATS [Mass Mailer Admin](/nats-admin/mass-mailing.md), where you can create a new member mailer (setup contents of the email as desired), and set up specific rules where you can manipulate the following fields:

For example, a mailer for 7-day trials where you will send an email 4 days after they have joined,

* Options(s) - Group together all of the options you want to send an email for. As an example: All 7-day trial options
* Status - "Exactly" Joined; to only mail active members
* Time Since Last Action - "More Than" "4" "days"; to only mail members who had an action 4 days ago
* Trial - "Trial"; only mail to trial members

Time Since Last Action uses the member's timestamp. This will roughly match when the email needs to be sent out. It could change if something else updates their account before the email is sent. Depending on the biller, there can be multiple different actions that update a member's timestamp, so this may not be completely on time for all scenarios.

You would want to create a [Member Mailer Rule ](/using-nats/nats-admin-features/rules.md#member-email-criteria)for each group of join options and mailing conditions, that you want this reminder mailer sent out for.

### Mass Mailer Example

For members that join with 30-day options(monthly), this example will send members an email 7 days before the expected rebill date:

<figure><img src="/files/8kfjXD2Q3csvd7prtMTN" alt=""><figcaption></figcaption></figure>

To learn more about setting up a Mass Mailer email, see our [How to Add a New Mail](/nats-admin/mass-mailing/common-question/how-to-add-a-new-mail.md) article.&#x20;

## Related Articles

{% content-ref url="/pages/HdePEIEyri8rNAq5CbDd" %}
[Mass Mailer Template Variables](/nats-admin/mass-mailing/further-reading/mass-mailer-template-variables.md)
{% endcontent-ref %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.toomuchmedia.com/nats-admin/mass-mailing/further-reading/reminder-emails.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
