diff --git a/app/internal_packages/preferences/lib/tabs/preferences-identity.jsx b/app/internal_packages/preferences/lib/tabs/preferences-identity.jsx index f6508956e..5b389a83d 100644 --- a/app/internal_packages/preferences/lib/tabs/preferences-identity.jsx +++ b/app/internal_packages/preferences/lib/tabs/preferences-identity.jsx @@ -37,6 +37,71 @@ class RefreshButton extends React.Component { } } +const ProTourFeatures = [ + { + link: + 'https://foundry376.zendesk.com/hc/en-us/articles/115003340291--Add-reminders-to-sent-messages', + icon: `icon-composer-reminders.png`, + title: `Reminders`, + text: `Never forget to follow up! Mailspring reminds you if your messages haven't received replies.`, + }, + { + link: + 'https://foundry376.zendesk.com/hc/en-us/articles/115001881272--View-contact-and-company-profiles', + icon: `toolbar-person-sidebar.png`, + title: `Rich contact profiles`, + text: `Write better emails with LinkedIn profiles, Twitter bios, message history, and more in the right sidebar.`, + }, + { + link: + 'https://foundry376.zendesk.com/hc/en-us/articles/115001875431--Enable-read-receipts-link-tracking-and-notifications', + icon: `icon-composer-eye.png`, + title: `Read receipts`, + text: `Get notified when each recipient opens your email to send timely follow-ups and reminders.`, + }, + { + link: + 'https://foundry376.zendesk.com/hc/en-us/articles/115001875231--Reply-faster-with-email-templates', + icon: `toolbar-templates.png`, + title: `Mail Templates`, + text: `Create templated messages and fill them quickly to reply to messages and automate your common workflows.`, + }, + { + link: + 'https://foundry376.zendesk.com/hc/en-us/articles/115001875431--Enable-read-receipts-link-tracking-and-notifications', + icon: `icon-composer-linktracking.png`, + title: `Link tracking`, + text: `See when recipients click links in your emails so you can follow up with precision`, + }, + { + link: + 'https://foundry376.zendesk.com/hc/en-us/articles/115001882012--Schedule-messages-to-send-later', + icon: `icon-composer-sendlater.png`, + title: `Send later`, + text: `Schedule messages to send at the ideal time to maximize your email reply rate or automate drip emails.`, + }, + { + link: + 'https://foundry376.zendesk.com/hc/en-us/articles/115001881272--View-contact-and-company-profiles', + icon: `icon-composer-reminders.png`, + title: `Company overviews`, + text: `See detailed information about companies you email, including their size, funding and timezone.`, + }, + { + link: + 'https://foundry376.zendesk.com/hc/en-us/articles/115001881232--Snooze-emails-to-handle-them-later', + icon: `toolbar-snooze.png`, + title: `Snooze messages`, + text: `Schedule messages to re-appear later to keep your inbox clean and focus on immediate todos.`, + }, + { + link: 'https://foundry376.zendesk.com/hc/en-us/articles/115002507891-Activity-Reports-In-Depth', + icon: `icon-toolbar-activity.png`, + title: `Mailbox insights`, + text: `Use the Activity tab to get a birds-eye view of your mailbox: open and click rates, subject line effectiveness, and more.`, + }, +]; + class PreferencesIdentity extends React.Component { static displayName = 'PreferencesIdentity'; @@ -197,13 +262,33 @@ class PreferencesIdentity extends React.Component {
Thank you for using{' '} {`Mailspring ${planDisplayName}`}{' '} - and supporting independent software. Get the most out of your subscription: visit the{' '} + and supporting independent software. Get the most out of your subscription: explore pro + features below or visit the{' '} Help Center {' '} - to learn more about great features like reminders, templates, and activity insights. + to learn more about reminders, templates, activity insights, and more. {unpaidNote}
+
Explore Mailspring Pro
+
+ {ProTourFeatures.map(item => ( + +
+ +
+

+ + {item.title} +

+

{item.text}

+
+ ))} +