> ## Documentation Index
> Fetch the complete documentation index at: https://memberful.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# The right way to unsubscribe

> See why your newsletter's unsubscribe link doesn't cancel a member's Memberful subscription, and learn the right way to handle email opt-outs and cancellations.

export const RelatedDocs = ({link1, link2, link3, link4, link5, link6, link7, link8, link9, link10, className = ""}) => {
  const links = [link1, link2, link3, link4, link5, link6, link7, link8, link9, link10].filter(Boolean);
  if (!links.length) return null;
  return <section className={`related-docs border dark:border-gray-700 rounded-2xl px-6 py-4 mt-6 ${className}`}>
      <p className="mb-2 font-medium">
        <strong>Related help docs:</strong>
      </p>
      <ul className="space-y-1 mb-1 mt-1">
        {links.map((link, index) => <li key={index}>
            <a href={link.url}>{link.label}</a>
          </li>)}
      </ul>
    </section>;
};

We strongly recommend that you add a Memberful account link to your email newsletters so your members can easily access and manage their profile, subscriptions, and credit card details.

```text theme={null}
https://ACCOUNT-URL.memberful.com/account
```

Replace ACCOUNT-URL with your actual Account URL subdomain, which can be found in your Memberful dashboard via *Website → Settings.*

<Frame>
  <img src="https://mintcdn.com/memberful/xXjwqCUtMkelgT1Y/images/integrations/email-newsletters/the-right-way-to-unsubscribe/mailchimp-newsletter-footer.png?fit=max&auto=format&n=xXjwqCUtMkelgT1Y&q=85&s=44be55e322d4323d613665a84d503d8c" alt="Mailchimp footer" width="1440" height="648" data-path="images/integrations/email-newsletters/the-right-way-to-unsubscribe/mailchimp-newsletter-footer.png" />
</Frame>

## Get an unsubscribed member back on your list

If you have a paying member who previously unsubscribed from your list but wants to receive members-only emails again, follow the instructions below from your email newsletter provider.

### Campaign Monitor

If a member mistakenly clicks Campaign Monitor's unsubscribe link and you want them to receive emails again, [remove them from the suppression list](https://help.campaignmonitor.com/suppression-list#remove) and [reactivate the subscriber.](https://help.campaignmonitor.com/resubscribe-unsubscribed-email-address)

### Kit

If a member mistakenly clicks the Kit unsubscribe link and you want them to receive emails again, you'll need to contact the Kit support team to resubscribe them.

### Drip

If a paying member mistakenly clicks the Drip unsubscribe link and you want them to receive emails again, they'll need to [re-subscribe via a Drip form.](https://help.drip.com/hc/en-us/articles/4424702598285-Unsubscribe-Resubscribe)

### Klaviyo

If a member mistakenly clicks the Klaviyo unsubscribe link and you want them to receive emails again, [they'll need to fill out a Klaviyo signup form or subscribe page, or upload a CSV file with email consent.](https://help.klaviyo.com/hc/en-us/articles/115005078267)

### Mailchimp

If a member mistakenly clicks the Mailchimp unsubscribe link and you want them to receive emails again, they'll need to [re-subscribe via a Mailchimp form](https://mailchimp.com/help/resubscribe-a-contact/#Resubscribe_with_the_signup_form).

### MailerLite

If a member mistakenly clicks the MailerLite unsubscribe link and you want them to receive emails again, you'll need to [get documented permission to resubscribe them](https://www.mailerlite.com/help/everything-about-unsubscribed-recipients?_gl=1*1hwyybr*_up*MQ..*_gs*MQ..\&gclid=CjwKCAjwvr--BhB5EiwAd5YbXkXEH1uchOVYFF8gypYmvBG7wr6oKuWlYcOshBfAr2oOj2cZ3sPSkhoCk9sQAvD_BwE#new/reactivate).

### Sailthru

If a member mistakenly clicks the Sailthru unsubscribe link and you want them to receive emails again, they'll need to [re-subscribe via a Sailthru hosted page](https://getstarted.sailthru.com/audience/managing-users/allowing-users-to-opt-back-in/#Via_Hosted_Opt-In_Page).

<RelatedDocs
  link1={{
url: "/newsletters/integrations/campaign-monitor/",
label: "Integrate with Campaign Monitor.",
}}
  link2={{
url: "/newsletters/integrations/kit/",
label: "Integrate with Kit.",
}}
  link3={{
url: "/newsletters/integrations/drip/",
label: "Integrate with Drip.",
}}
  link4={{
url: "/newsletters/integrations/klaviyo/",
label: "Integrate with Klaviyo.",
}}
  link5={{
url: "/newsletters/integrations/mailchimp/",
label: "Integrate with Mailchimp.",
}}
  link6={{
url: "/newsletters/integrations/mailerlite/",
label: "Integrate with MailerLite.",
}}
  link7={{
url: "/newsletters/integrations/sailthru/",
label: "Integrate with Sailthru.",
}}
/>
