> ## 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.

# Manage your email notifications

> Manage email notifications for Memberful account owners and staff. Pick which events trigger an alert, including signups, cancellations, and payment failures.

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>;
};

In this help article, we'll explore how to manage your Memberful email notifications.

Go to the **Settings** tab to update your email address and choose which notifications you'd like to receive.

<Frame>
  <img src="https://mintcdn.com/memberful/xXjwqCUtMkelgT1Y/images/manage-your-account/manage-your-email-notifications/email-notification-preferences.png?fit=max&auto=format&n=xXjwqCUtMkelgT1Y&q=85&s=5c92f53fce5edf2711f8ad192d6df796" alt="Email notification preferences" width="1440" height="1224" data-path="images/manage-your-account/manage-your-email-notifications/email-notification-preferences.png" />
</Frame>

### Email notification preferences

* **Notify me whenever a new order is placed or a new member signs up** \
  Receive an email notification whenever a new order is placed or a new member signs up.
* **BCC me on important member emails (renewal reminders and expirations)** \
  Receive a blind carbon copy (BCC) of important member emails, such as renewal reminders and expirations.
* **Send me a weekly activity digest (revenue, orders, active members)** \
  Receive a weekly email with a summary of your site's activity, including revenue, orders, and active members.
* **Notify me 30 days before an externally paid group subscription is set to renew** \
  Receive an email notification 30 days before an externally paid group subscription is set to renew.
* **Notify me whenever an externally paid group subscription is past due** \
  Receive an email notification whenever an externally paid group subscription is past due.

<Callout icon="info" color="#22E273">
  To allow non–account-owner [staff accounts](/account-management/staff/add-a-staff-member/) to receive a weekly activity digest, you need to enable the *Revenue* permission.
</Callout>

<RelatedDocs
  link1={{
url: "/account-management/profile/update-your-personal-information/",
label: "Update your email and password.",
}}
  link2={{
url: "/account-management/account-settings/update-your-site-and-account-settings/",
label: "Manage your account settings.",
}}
  link3={{
url: "/plans-and-products/add-a-link-to-buy-a-plan/",
label: "Add a plan purchase link to your site.",
}}
/>
