-
Notifications
You must be signed in to change notification settings - Fork 422
Description
[READ] Step 1: Are you in the right place?
Issues filed here should be about a feature request for a specific extension in this repository. To file a feature request that affects multiple extensions or the Firebase Extensions platform, please reach out to
Firebase support directly.
[REQUIRED] Step 2: Extension name
This feature request is for extension: firestore-send-email
What feature would you like to see?
I’d like the firestore-send-email extension to support the addition of List-Unsubscribe and List-Unsubscribe-Post headers in emails sent through the extension. These headers would allow email clients like Gmail to display a prominent "Unsubscribe" button at the top of emails, improving user experience and ensuring compliance with Gmail’s 2024 bulk sender guidelines (applicable to senders of 5,000+ emails/day to Gmail addresses).
Specifically, the extension should:
- Accept optional fields in the Firestore document written to the mail collection, such as
listUnsubscribe.mailto(for an email-based unsubscribe),listUnsubscribe.http(for a URL-based unsubscribe), andlistUnsubscribe.oneClick(to enable one-click unsubscribe via the List-Unsubscribe-Post header). - Translate these fields into the appropriate email headers when sending the email via the configured SMTP provider (e.g., Nodemailer under the hood).
For example, a user could write a document like this:
admin.firestore().collection('mail').add({
to: 'someone@example.com',
message: {
subject: 'Newsletter Subscription',
html: '<p>Here’s your latest update!</p>',
},
listUnsubscribe: {
mailto: 'unsubscribe@example.com',
http: 'https://example.com/unsubscribe?user=unique_id',
oneClick: true,
},
});The extension would then generate an email with headers like:
List-Unsubscribe: <mailto:unsubscribe@example.com>, <https://example.com/unsubscribe?user=unique_id>
List-Unsubscribe-Post: List-Unsubscribe=One-Click
This change would:
- Enable Gmail’s one-click unsubscribe functionality, where clicking the button sends a
POSTrequest to the provided http URL, instantly unsubscribing the user without additional steps. - Support the traditional
mailtounsubscribe method for broader compatibility across email clients. - Reduce spam complaints by offering an easy opt-out, improving sender reputation and deliverability.
How would you use it?
In my SaaS app, I’d use this feature to streamline email notifications and marketing campaigns sent to users, ensuring they can easily unsubscribe while maintaining compliance with Gmail’s bulk sender requirements. My app relies on Firebase for backend services, including Firestore to trigger emails like onboarding sequences, feature updates, and promotional offers via the firestore-send-email extension.