Skip to content

Instantly share code, notes, and snippets.

@karngyan
Last active November 1, 2024 05:28
Show Gist options
  • Save karngyan/a9d85a78673d650e6946af143b2f36f8 to your computer and use it in GitHub Desktop.
Save karngyan/a9d85a78673d650e6946af143b2f36f8 to your computer and use it in GitHub Desktop.
[
{
"name": "Order Confirmation",
"description": "A transactional email confirming that the user’s order has been placed successfully.",
"subject": "Your Order Confirmation",
"body": "<html><body><h1>Thank you for your order!</h1><p>Your order has been successfully placed. We will notify you when it ships.</p></body></html>"
},
{
"name": "Password Reset",
"description": "An email containing a link to reset the user’s password upon request.",
"subject": "Password Reset Request",
"body": "<html><body><h1>Reset Your Password</h1><p>Click <a href='reset_link'>here</a> to reset your password. If you didn't request this, please ignore this email.</p></body></html>"
},
{
"name": "Shipping Notification",
"description": "A push notification informing the user that their order has been shipped.",
"subject": "Your Order Has Shipped",
"body": "Your order has shipped! Track your order now to see when it will arrive."
},
{
"name": "Account Activation",
"description": "An email prompting the user to activate their account after signing up.",
"subject": "Activate Your Account",
"body": "<html><body><h1>Welcome!</h1><p>Click <a href='activation_link'>here</a> to activate your account and get started.</p></body></html>"
},
{
"name": "Payment Confirmation",
"description": "A transactional email confirming that the user’s payment has been processed.",
"subject": "Payment Confirmation",
"body": "<html><body><h1>Payment Successful</h1><p>Your payment has been processed successfully. Thank you for your purchase!</p></body></html>"
},
{
"name": "Two-Factor Authentication",
"description": "A push notification with a verification code for two-factor authentication.",
"subject": "Your Verification Code",
"body": "Your verification code is 123456. Use this code to complete your login."
},
{
"name": "Subscription Renewal Reminder",
"description": "An email reminding the user about their upcoming subscription renewal.",
"subject": "Subscription Renewal Reminder",
"body": "<html><body><h1>Renewal Reminder</h1><p>Your subscription is set to renew soon. Please make sure your payment information is up to date.</p></body></html>"
},
{
"name": "Refund Processed",
"description": "An email confirming that the user’s refund has been successfully processed.",
"subject": "Refund Processed",
"body": "<html><body><h1>Refund Completed</h1><p>Your refund has been processed successfully. It may take a few days to reflect in your account.</p></body></html>"
},
{
"name": "Order Delivery Confirmation",
"description": "A push notification letting the user know that their order has been delivered.",
"subject": "Order Delivered",
"body": "Your order has been delivered! We hope you enjoy your purchase."
},
{
"name": "Account Deactivation Notice",
"description": "An email notifying the user of an upcoming account deactivation due to inactivity.",
"subject": "Account Deactivation Notice",
"body": "<html><body><h1>Important: Account Deactivation</h1><p>Your account will be deactivated due to inactivity. Please log in to keep it active.</p></body></html>"
},
{
"name": "Invoice Available",
"description": "An email informing the user that their latest invoice is now available for download.",
"subject": "Your Invoice is Ready",
"body": "<html><body><h1>Invoice Available</h1><p>Your latest invoice is now ready. Click <a href='invoice_link'>here</a> to download it.</p></body></html>"
},
{
"name": "Login Alert",
"description": "A push notification alerting the user of a new login to their account from an unrecognized device.",
"subject": "New Login Alert",
"body": "We noticed a new login to your account from an unrecognized device. If this wasn’t you, please secure your account."
},
{
"name": "Subscription Cancellation Confirmation",
"description": "An email confirming that the user’s subscription has been canceled.",
"subject": "Subscription Canceled",
"body": "<html><body><h1>Subscription Cancellation</h1><p>Your subscription has been canceled. If you have any questions, please contact support.</p></body></html>"
},
{
"name": "Payment Failure Alert",
"description": "An email notifying the user that their payment could not be processed and needs to be updated.",
"subject": "Payment Failure Notification",
"body": "<html><body><h1>Payment Failed</h1><p>We couldn't process your payment. Please update your payment information to avoid service interruptions.</p></body></html>"
},
{
"name": "Order Update",
"description": "A push notification updating the user about changes to their order status.",
"subject": "Order Update",
"body": "Your order status has been updated. Check your account for more details."
},
{
"name": "Appointment Reminder",
"description": "An email reminding the user of their upcoming appointment with details and location.",
"subject": "Upcoming Appointment Reminder",
"body": "<html><body><h1>Appointment Reminder</h1><p>Your appointment is scheduled for [Date & Time]. Click <a href='calendar_link'>here</a> for details.</p></body></html>"
},
{
"name": "Billing Address Change Confirmation",
"description": "An email confirming that the user’s billing address has been successfully updated.",
"subject": "Billing Address Updated",
"body": "<html><body><h1>Billing Address Change</h1><p>Your billing address has been updated successfully.</p></body></html>"
},
{
"name": "Gift Card Delivery",
"description": "An email containing the details of a gift card sent to the user or a recipient.",
"subject": "Your Gift Card Has Arrived",
"body": "<html><body><h1>Gift Card Delivery</h1><p>Here is your gift card code: [Code]. Enjoy!</p></body></html>"
},
{
"name": "Download Ready",
"description": "A push notification informing the user that their requested download is ready.",
"subject": "Download Ready",
"body": "Your download is now ready. Click the link in your account to start downloading."
},
{
"name": "Account Settings Updated",
"description": "An email notifying the user that their account settings have been updated.",
"subject": "Account Settings Updated",
"body": "<html><body><h1>Account Settings Change</h1><p>Your account settings have been successfully updated.</p></body></html>"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment