672 lines
19 KiB
Elixir
672 lines
19 KiB
Elixir
defmodule PlausibleWeb.Email do
|
|
use Plausible
|
|
import Bamboo.Email
|
|
import Bamboo.PostmarkHelper
|
|
|
|
def mailer_email_from do
|
|
Application.get_env(:plausible, :mailer_email)
|
|
end
|
|
|
|
def activation_email(user, code) do
|
|
priority_email()
|
|
|> to(user)
|
|
|> tag("activation-email")
|
|
|> subject("#{code} is your Plausible email verification code")
|
|
|> render("activation_email.html", user: user, code: code)
|
|
end
|
|
|
|
def welcome_email(user) do
|
|
base_email()
|
|
|> to(user)
|
|
|> tag("welcome-email")
|
|
|> subject("Welcome to Plausible")
|
|
|> render("welcome_email.html", user: user)
|
|
end
|
|
|
|
def create_site_email(user) do
|
|
base_email()
|
|
|> to(user)
|
|
|> tag("create-site-email")
|
|
|> subject("Your Plausible setup: Add your website details")
|
|
|> render("create_site_email.html", user: user)
|
|
end
|
|
|
|
def site_setup_help(user, team, site) do
|
|
base_email()
|
|
|> to(user)
|
|
|> tag("help-email")
|
|
|> subject("Your Plausible setup: Waiting for the first page views")
|
|
|> render("site_setup_help_email.html",
|
|
user: user,
|
|
site: site,
|
|
site_team: team
|
|
)
|
|
end
|
|
|
|
def site_setup_success(user, team, site) do
|
|
base_email()
|
|
|> to(user)
|
|
|> tag("setup-success-email")
|
|
|> subject("Plausible is now tracking your website stats")
|
|
|> render("site_setup_success_email.html",
|
|
user: user,
|
|
site: site,
|
|
site_team: team
|
|
)
|
|
end
|
|
|
|
def check_stats_email(user) do
|
|
base_email()
|
|
|> to(user)
|
|
|> tag("check-stats-email")
|
|
|> subject("Check your Plausible website stats")
|
|
|> render("check_stats_email.html", user: user)
|
|
end
|
|
|
|
def password_reset_email(email, reset_link) do
|
|
priority_email(%{layout: nil})
|
|
|> to(email)
|
|
|> tag("password-reset-email")
|
|
|> subject("Plausible password reset")
|
|
|> render("password_reset_email.html", reset_link: reset_link)
|
|
end
|
|
|
|
def two_factor_enabled_email(user) do
|
|
priority_email()
|
|
|> to(user)
|
|
|> tag("two-factor-enabled-email")
|
|
|> subject("Plausible Two-Factor Authentication enabled")
|
|
|> render("two_factor_enabled_email.html", user: user)
|
|
end
|
|
|
|
def two_factor_disabled_email(user) do
|
|
priority_email()
|
|
|> to(user)
|
|
|> tag("two-factor-disabled-email")
|
|
|> subject("Plausible Two-Factor Authentication disabled")
|
|
|> render("two_factor_disabled_email.html", user: user)
|
|
end
|
|
|
|
def trial_one_week_reminder(user, team) do
|
|
base_email()
|
|
|> to(user)
|
|
|> tag("trial-one-week-reminder")
|
|
|> subject("Your Plausible trial expires next week")
|
|
|> render("trial_one_week_reminder.html", user: user, team: team)
|
|
end
|
|
|
|
def trial_upgrade_email(user, team, day, usage, suggested_volume) do
|
|
base_email()
|
|
|> to(user)
|
|
|> tag("trial-upgrade-email")
|
|
|> subject("Your Plausible trial ends #{day}")
|
|
|> render("trial_upgrade_email.html",
|
|
user: user,
|
|
team: team,
|
|
day: day,
|
|
custom_events: usage.custom_events,
|
|
usage: usage.total,
|
|
suggested_volume: suggested_volume
|
|
)
|
|
end
|
|
|
|
def trial_over_email(user, team) do
|
|
base_email()
|
|
|> to(user)
|
|
|> tag("trial-over-email")
|
|
|> subject("Your Plausible trial has ended")
|
|
|> render("trial_over_email.html",
|
|
user: user,
|
|
team: team,
|
|
extra_offset: Plausible.Teams.Team.trial_accept_traffic_until_offset_days()
|
|
)
|
|
end
|
|
|
|
def stats_report(email, assigns) do
|
|
base_email(%{layout: nil})
|
|
|> to(email)
|
|
|> tag("#{assigns.interval}-report")
|
|
|> subject("#{assigns.report_name} report for #{assigns.site.domain}")
|
|
|> html_body(PlausibleWeb.MJML.StatsReport.render(assigns))
|
|
end
|
|
|
|
def spike_notification(email, site, stats, dashboard_link) do
|
|
base_email()
|
|
|> to(email)
|
|
|> tag("spike-notification")
|
|
|> subject(
|
|
"Traffic spike on #{if Plausible.Sites.consolidated?(site), do: "your sites", else: site.domain}"
|
|
)
|
|
|> render("spike_notification.html", %{
|
|
site: site,
|
|
current_visitors: stats.current_visitors,
|
|
sources: stats.sources,
|
|
pages: stats.pages,
|
|
link: dashboard_link
|
|
})
|
|
end
|
|
|
|
def drop_notification(email, site, current_visitors, dashboard_link, installation_link) do
|
|
base_email()
|
|
|> to(email)
|
|
|> tag("drop-notification")
|
|
|> subject(
|
|
"Traffic drop on #{if Plausible.Sites.consolidated?(site), do: "your sites", else: site.domain}"
|
|
)
|
|
|> render("drop_notification.html", %{
|
|
site: site,
|
|
current_visitors: current_visitors,
|
|
dashboard_link: dashboard_link,
|
|
installation_link: installation_link
|
|
})
|
|
end
|
|
|
|
def over_limit_email(user, team, usage, suggested_volume) do
|
|
priority_email()
|
|
|> to(user)
|
|
|> tag("over-limit")
|
|
|> subject("[Action required] You have outgrown your Plausible subscription tier")
|
|
|> render("over_limit.html", %{
|
|
user: user,
|
|
team: team,
|
|
usage: usage,
|
|
suggested_volume: suggested_volume
|
|
})
|
|
end
|
|
|
|
def enterprise_over_limit_internal_email(user, pageview_usage, site_usage, site_allowance) do
|
|
base_email(%{layout: nil})
|
|
|> to("enterprise@plausible.io")
|
|
|> tag("enterprise-over-limit")
|
|
|> subject("#{user.email} has outgrown their enterprise plan")
|
|
|> render("enterprise_over_limit_internal.html", %{
|
|
user: user,
|
|
pageview_usage: pageview_usage,
|
|
site_usage: site_usage,
|
|
site_allowance: site_allowance
|
|
})
|
|
end
|
|
|
|
def dashboard_locked(user, team, usage, suggested_volume) do
|
|
priority_email()
|
|
|> to(user)
|
|
|> tag("dashboard-locked")
|
|
|> subject("[Action required] Your Plausible dashboard is now locked")
|
|
|> render("dashboard_locked.html", %{
|
|
user: user,
|
|
team: team,
|
|
usage: usage,
|
|
suggested_volume: suggested_volume
|
|
})
|
|
end
|
|
|
|
def yearly_renewal_notification(team, owner) do
|
|
date = Calendar.strftime(team.subscription.next_bill_date, "%B %-d, %Y")
|
|
|
|
priority_email()
|
|
|> to(owner)
|
|
|> tag("yearly-renewal")
|
|
|> subject("Your Plausible subscription is up for renewal")
|
|
|> render("yearly_renewal_notification.html", %{
|
|
user: owner,
|
|
team: team,
|
|
date: date,
|
|
next_bill_amount: team.subscription.next_bill_amount,
|
|
currency: team.subscription.currency_code
|
|
})
|
|
end
|
|
|
|
def yearly_expiration_notification(team, owner) do
|
|
next_bill_date = Calendar.strftime(team.subscription.next_bill_date, "%B %-d, %Y")
|
|
|
|
accept_traffic_until =
|
|
team
|
|
|> Plausible.Teams.accept_traffic_until()
|
|
|> Calendar.strftime("%B %-d, %Y")
|
|
|
|
priority_email()
|
|
|> to(owner)
|
|
|> tag("yearly-expiration")
|
|
|> subject("Your Plausible subscription is about to expire")
|
|
|> render("yearly_expiration_notification.html", %{
|
|
user: owner,
|
|
team: team,
|
|
next_bill_date: next_bill_date,
|
|
accept_traffic_until: accept_traffic_until
|
|
})
|
|
end
|
|
|
|
def cancellation_email(user) do
|
|
base_email()
|
|
|> to(user.email)
|
|
|> tag("cancelled-email")
|
|
|> subject("Mind sharing your thoughts on Plausible?")
|
|
|> render("cancellation_email.html", user: user)
|
|
end
|
|
|
|
def new_user_invitation(email, invitation_id, site, inviter) do
|
|
priority_email()
|
|
|> to(email)
|
|
|> tag("new-user-invitation")
|
|
|> subject("[#{Plausible.product_name()}] You've been invited to #{site.domain}")
|
|
|> render("new_user_invitation.html",
|
|
invitation_id: invitation_id,
|
|
site: site,
|
|
inviter: inviter
|
|
)
|
|
end
|
|
|
|
def existing_user_invitation(email, site, inviter) do
|
|
priority_email()
|
|
|> to(email)
|
|
|> tag("existing-user-invitation")
|
|
|> subject("[#{Plausible.product_name()}] You've been invited to #{site.domain}")
|
|
|> render("existing_user_invitation.html",
|
|
site: site,
|
|
inviter: inviter
|
|
)
|
|
end
|
|
|
|
def new_user_team_invitation(email, invitation_id, team, inviter) do
|
|
priority_email()
|
|
|> to(email)
|
|
|> tag("new-user-team-invitation")
|
|
|> subject("[#{Plausible.product_name()}] You've been invited to \"#{team.name}\" team")
|
|
|> render("new_user_team_invitation.html",
|
|
invitation_id: invitation_id,
|
|
team: team,
|
|
inviter: inviter
|
|
)
|
|
end
|
|
|
|
def existing_user_team_invitation(email, team, inviter) do
|
|
priority_email()
|
|
|> to(email)
|
|
|> tag("existing-user-team-invitation")
|
|
|> subject("[#{Plausible.product_name()}] You've been invited to \"#{team.name}\" team")
|
|
|> render("existing_user_team_invitation.html",
|
|
team: team,
|
|
inviter: inviter
|
|
)
|
|
end
|
|
|
|
def guest_to_team_member_promotion(email, team, inviter) do
|
|
priority_email()
|
|
|> to(email)
|
|
|> tag("guest-to-team-member-promotion")
|
|
|> subject("[#{Plausible.product_name()}] Welcome to \"#{team.name}\" team")
|
|
|> render("guest_to_team_member_promotion.html", inviter: inviter, team: team)
|
|
end
|
|
|
|
def ownership_transfer_request(email, invitation_id, site, inviter, new_owner_account) do
|
|
priority_email()
|
|
|> to(email)
|
|
|> tag("ownership-transfer-request")
|
|
|> subject("[#{Plausible.product_name()}] Request to transfer ownership of #{site.domain}")
|
|
|> render("ownership_transfer_request.html",
|
|
invitation_id: invitation_id,
|
|
inviter: inviter,
|
|
site: site,
|
|
new_owner_account: new_owner_account
|
|
)
|
|
end
|
|
|
|
def guest_invitation_accepted(inviter_email, invitee_email, team, site) do
|
|
priority_email()
|
|
|> to(inviter_email)
|
|
|> tag("guest-invitation-accepted")
|
|
|> subject(
|
|
"[#{Plausible.product_name()}] #{invitee_email} accepted your invitation to #{site.domain}"
|
|
)
|
|
|> render("guest_invitation_accepted.html",
|
|
invitee_email: invitee_email,
|
|
team: team,
|
|
site: site
|
|
)
|
|
end
|
|
|
|
def team_invitation_accepted(inviter_email, invitee_email, team) do
|
|
priority_email()
|
|
|> to(inviter_email)
|
|
|> tag("team-invitation-accepted")
|
|
|> subject(
|
|
"[#{Plausible.product_name()}] #{invitee_email} accepted your invitation to \"#{team.name}\" team"
|
|
)
|
|
|> render("team_invitation_accepted.html",
|
|
invitee_email: invitee_email,
|
|
team: team
|
|
)
|
|
end
|
|
|
|
def guest_invitation_rejected(guest_invitation) do
|
|
priority_email()
|
|
|> to(guest_invitation.team_invitation.inviter.email)
|
|
|> tag("guest-invitation-rejected")
|
|
|> subject(
|
|
"[#{Plausible.product_name()}] #{guest_invitation.team_invitation.email} rejected your invitation to #{guest_invitation.site.domain}"
|
|
)
|
|
|> render("guest_invitation_rejected.html",
|
|
team: guest_invitation.team_invitation.team,
|
|
guest_invitation: guest_invitation
|
|
)
|
|
end
|
|
|
|
def team_invitation_rejected(team_invitation) do
|
|
priority_email()
|
|
|> to(team_invitation.inviter.email)
|
|
|> tag("team-invitation-rejected")
|
|
|> subject(
|
|
"[#{Plausible.product_name()}] #{team_invitation.email} rejected your invitation to \"#{team_invitation.team.name}\" team"
|
|
)
|
|
|> render("team_invitation_rejected.html",
|
|
team: team_invitation.team,
|
|
team_invitation: team_invitation
|
|
)
|
|
end
|
|
|
|
def ownership_transfer_accepted(
|
|
new_owner_email,
|
|
inviter_email,
|
|
team,
|
|
site,
|
|
initiator_as_guest_editor?
|
|
) do
|
|
priority_email()
|
|
|> to(inviter_email)
|
|
|> tag("ownership-transfer-accepted")
|
|
|> subject(
|
|
"[#{Plausible.product_name()}] #{new_owner_email} accepted the ownership transfer of #{site.domain}"
|
|
)
|
|
|> render("ownership_transfer_accepted.html",
|
|
new_owner_email: new_owner_email,
|
|
team: team,
|
|
site: site,
|
|
initiator_as_guest_editor?: initiator_as_guest_editor?
|
|
)
|
|
end
|
|
|
|
def team_changed(owner_email, user, team, site) do
|
|
priority_email()
|
|
|> to(owner_email)
|
|
|> tag("team-changed")
|
|
|> subject(
|
|
"[#{Plausible.product_name()}] #{user.email} has transferred #{site.domain} to \"#{team.name}\" team"
|
|
)
|
|
|> render("team_changed.html",
|
|
user: user,
|
|
team: team,
|
|
site: site
|
|
)
|
|
end
|
|
|
|
def ownership_transfer_rejected(site_transfer) do
|
|
priority_email()
|
|
|> to(site_transfer.initiator.email)
|
|
|> tag("ownership-transfer-rejected")
|
|
|> subject(
|
|
"[#{Plausible.product_name()}] #{site_transfer.email} rejected the ownership transfer of #{site_transfer.site.domain}"
|
|
)
|
|
|> render("ownership_transfer_rejected.html",
|
|
user: site_transfer.initiator,
|
|
team: site_transfer.site.team,
|
|
site_transfer: site_transfer
|
|
)
|
|
end
|
|
|
|
def site_member_removed(guest_membership) do
|
|
priority_email()
|
|
|> to(guest_membership.team_membership.user.email)
|
|
|> tag("site-member-removed")
|
|
|> subject(
|
|
"[#{Plausible.product_name()}] Your access to #{guest_membership.site.domain} has been revoked"
|
|
)
|
|
|> render("site_member_removed.html",
|
|
user: guest_membership.team_membership.user,
|
|
guest_membership: guest_membership
|
|
)
|
|
end
|
|
|
|
def team_member_removed(team_membership) do
|
|
priority_email()
|
|
|> to(team_membership.user.email)
|
|
|> tag("team-member-removed")
|
|
|> subject(
|
|
"[#{Plausible.product_name()}] Your access to \"#{team_membership.team.name}\" team has been revoked"
|
|
)
|
|
|> render("team_member_removed.html",
|
|
user: team_membership.user,
|
|
team_membership: team_membership
|
|
)
|
|
end
|
|
|
|
def team_member_left(team_membership) do
|
|
priority_email()
|
|
|> to(team_membership.user.email)
|
|
|> tag("team-member-left")
|
|
|> subject(
|
|
"[#{Plausible.product_name()}] You have left \"#{team_membership.team.name}\" team"
|
|
)
|
|
|> render("team_member_left.html",
|
|
user: team_membership.user,
|
|
team_membership: team_membership
|
|
)
|
|
end
|
|
|
|
def import_success(site_import, user) do
|
|
import_api = Plausible.Imported.ImportSources.by_name(site_import.source)
|
|
label = import_api.label()
|
|
team = site_import.site.team
|
|
|
|
priority_email()
|
|
|> to(user)
|
|
|> tag("import-success-email")
|
|
|> subject("#{label} data imported for #{site_import.site.domain}")
|
|
|> render(import_api.email_template(), %{
|
|
site_import: site_import,
|
|
label: label,
|
|
link:
|
|
PlausibleWeb.Endpoint.url() <>
|
|
"/" <> URI.encode_www_form(site_import.site.domain) <> "?__team=#{team.identifier}",
|
|
user: user,
|
|
success: true
|
|
})
|
|
end
|
|
|
|
def import_failure(site_import, user) do
|
|
import_api = Plausible.Imported.ImportSources.by_name(site_import.source)
|
|
label = import_api.label()
|
|
|
|
priority_email()
|
|
|> to(user)
|
|
|> tag("import-failure-email")
|
|
|> subject("#{label} import failed for #{site_import.site.domain}")
|
|
|> render(import_api.email_template(), %{
|
|
site_import: site_import,
|
|
label: label,
|
|
user: user,
|
|
success: false
|
|
})
|
|
end
|
|
|
|
def export_success(user, site, expires_at) do
|
|
expires_in =
|
|
if expires_at do
|
|
Plausible.Times.humanize(expires_at)
|
|
end
|
|
|
|
download_url =
|
|
PlausibleWeb.Router.Helpers.site_url(
|
|
PlausibleWeb.Endpoint,
|
|
:download_export,
|
|
site.domain
|
|
) <> "?__team=#{site.team.identifier}"
|
|
|
|
priority_email()
|
|
|> to(user)
|
|
|> tag("export-success")
|
|
|> subject("[#{Plausible.product_name()}] Your export is now ready for download")
|
|
|> render("export_success.html",
|
|
user: user,
|
|
site: site,
|
|
download_url: download_url,
|
|
expires_in: expires_in
|
|
)
|
|
end
|
|
|
|
def export_failure(user, site) do
|
|
priority_email()
|
|
|> to(user)
|
|
|> subject("[#{Plausible.product_name()}] Your export has failed")
|
|
|> render("export_failure.html", user: user, site: site)
|
|
end
|
|
|
|
def error_report(reported_by, trace_id, feedback) do
|
|
Map.new()
|
|
|> Map.put(:layout, nil)
|
|
|> base_email()
|
|
|> to("bugs@plausible.io")
|
|
|> put_param("ReplyTo", reported_by)
|
|
|> tag("sentry")
|
|
|> subject("Feedback to Sentry Trace #{trace_id}")
|
|
|> render("error_report_email.html", %{
|
|
reported_by: reported_by,
|
|
feedback: feedback,
|
|
trace_id: trace_id
|
|
})
|
|
end
|
|
|
|
def approaching_accept_traffic_until(notification) do
|
|
base_email()
|
|
|> to(notification.email)
|
|
|> tag("drop-traffic-warning-first")
|
|
|> subject("We'll stop counting your stats")
|
|
|> render("approaching_accept_traffic_until.html",
|
|
time: "next week",
|
|
user: %{email: notification.email, name: notification.name},
|
|
team: notification.team
|
|
)
|
|
end
|
|
|
|
def approaching_accept_traffic_until_tomorrow(notification) do
|
|
base_email()
|
|
|> to(notification.email)
|
|
|> tag("drop-traffic-warning-final")
|
|
|> subject("A reminder that we'll stop counting your stats tomorrow")
|
|
|> render("approaching_accept_traffic_until.html",
|
|
time: "tomorrow",
|
|
user: %{email: notification.email, name: notification.name},
|
|
team: notification.team
|
|
)
|
|
end
|
|
|
|
on_ee do
|
|
def sso_domain_verification_success(domain, user) do
|
|
priority_email()
|
|
|> to(user.email)
|
|
|> subject("Your SSO domain #{domain} is ready!")
|
|
|> render("sso_domain_verification_success.html", domain: domain)
|
|
end
|
|
|
|
def sso_domain_verification_failure(domain, user) do
|
|
priority_email()
|
|
|> to(user)
|
|
|> subject("SSO domain #{domain} verification failure")
|
|
|> render("sso_domain_verification_failure.html", domain: domain)
|
|
end
|
|
end
|
|
|
|
def force_2fa_enabled(team, user, enabling_user) do
|
|
priority_email()
|
|
|> to(user.email)
|
|
|> subject("Your team now requires 2FA")
|
|
|> render("force_2fa_enabled.html", team: team, enabling_user: enabling_user)
|
|
end
|
|
|
|
@doc """
|
|
Unlike the default 'base' emails, priority emails cannot be unsubscribed from. This is achieved
|
|
by sending them through a dedicated 'priority' message stream in Postmark.
|
|
"""
|
|
def priority_email(), do: priority_email(%{layout: "priority_email.html"})
|
|
|
|
def priority_email(%{layout: layout}) do
|
|
email = base_email(%{layout: layout})
|
|
|
|
if ee?() do
|
|
put_param(email, "MessageStream", "priority")
|
|
else
|
|
email
|
|
end
|
|
end
|
|
|
|
def base_email(), do: base_email(%{layout: "base_email.html"})
|
|
|
|
def base_email(%{layout: layout}) do
|
|
new_email()
|
|
|> put_param("TrackOpens", false)
|
|
|> from(mailer_email_from())
|
|
|> maybe_put_layout(layout)
|
|
end
|
|
|
|
defp maybe_put_layout(email, nil), do: email
|
|
|
|
defp maybe_put_layout(%{assigns: assigns} = email, layout) do
|
|
%{email | assigns: Map.put(assigns, :layout, {PlausibleWeb.LayoutView, layout})}
|
|
end
|
|
|
|
@doc false
|
|
def render(email, template, assigns \\ []) do
|
|
assigns = Map.merge(email.assigns, Map.new(assigns))
|
|
html = Phoenix.View.render_to_string(PlausibleWeb.EmailView, template, assigns)
|
|
email |> html_body(html) |> text_body(textify(html))
|
|
end
|
|
|
|
defp textify(html) do
|
|
Floki.parse_fragment!(html)
|
|
|> traverse_and_textify()
|
|
|> Floki.text()
|
|
|> collapse_whitespace()
|
|
end
|
|
|
|
defp traverse_and_textify([head | tail]) do
|
|
[traverse_and_textify(head) | traverse_and_textify(tail)]
|
|
end
|
|
|
|
defp traverse_and_textify(text) when is_binary(text) do
|
|
String.replace(text, "\n", "\s")
|
|
end
|
|
|
|
defp traverse_and_textify({"a" = tag, attrs, children}) do
|
|
href = with {"href", href} <- List.keyfind(attrs, "href", 0), do: href
|
|
children = traverse_and_textify(children)
|
|
|
|
if href do
|
|
text = Floki.text(children)
|
|
|
|
if text == href do
|
|
# avoids rendering "http://localhost:8000 (http://localhost:8000)" in base_email footer
|
|
text
|
|
else
|
|
IO.iodata_to_binary([text, " (", href, ?)])
|
|
end
|
|
else
|
|
{tag, attrs, children}
|
|
end
|
|
end
|
|
|
|
defp traverse_and_textify({tag, attrs, children}) do
|
|
{tag, attrs, traverse_and_textify(children)}
|
|
end
|
|
|
|
defp traverse_and_textify(other), do: other
|
|
|
|
defp collapse_whitespace(text) do
|
|
text
|
|
|> String.split("\n")
|
|
|> Enum.map_join("\n", fn line ->
|
|
line
|
|
|> String.split(" ", trim: true)
|
|
|> Enum.join(" ")
|
|
end)
|
|
end
|
|
end
|