Remove myself from email bcc

This commit is contained in:
Uku Taht 2020-04-06 14:00:14 +03:00
parent 1e66bde1d0
commit fec2016935

View File

@ -14,7 +14,6 @@ defmodule PlausibleWeb.Email do
def welcome_email(user) do
new_email()
|> to(user)
|> bcc("uku@plausible.io")
|> from("Uku Taht <uku@plausible.io>")
|> tag("welcome-email")
|> subject("Welcome to Plausible")
@ -24,7 +23,6 @@ defmodule PlausibleWeb.Email do
def create_site_email(user) do
new_email()
|> to(user)
|> bcc("uku@plausible.io")
|> from("Uku Taht <uku@plausible.io>")
|> tag("create-site-email")
|> subject("Your Plausible setup: Add your website details")
@ -34,7 +32,6 @@ defmodule PlausibleWeb.Email do
def site_setup_help(user, site) do
new_email()
|> to(user)
|> bcc("uku@plausible.io")
|> from("Uku Taht <uku@plausible.io>")
|> tag("help-email")
|> subject("Your Plausible setup: Waiting for the first page views")
@ -44,7 +41,6 @@ defmodule PlausibleWeb.Email do
def site_setup_success(user, site) do
new_email()
|> to(user)
|> bcc("uku@plausible.io")
|> from("Uku Taht <uku@plausible.io>")
|> tag("setup-success-email")
|> subject("Plausible is now tracking your website stats")
@ -54,7 +50,6 @@ defmodule PlausibleWeb.Email do
def check_stats_email(user) do
new_email()
|> to(user)
|> bcc("uku@plausible.io")
|> from("Uku Taht <uku@plausible.io>")
|> tag("check-stats-email")
|> subject("Check your Plausible website stats")
@ -73,7 +68,6 @@ defmodule PlausibleWeb.Email do
def trial_one_week_reminder(user) do
new_email()
|> to(user)
|> bcc("uku@plausible.io")
|> from("Uku Taht <uku@plausible.io>")
|> tag("trial-one-week-reminder")
|> subject("Your Plausible trial expires next week")
@ -83,7 +77,6 @@ defmodule PlausibleWeb.Email do
def trial_upgrade_email(user, day, pageviews) do
new_email()
|> to(user)
|> bcc("uku@plausible.io")
|> from("Uku Taht <uku@plausible.io>")
|> tag("trial-upgrade-email")
|> subject("Your Plausible trial ends #{day}")
@ -93,7 +86,6 @@ defmodule PlausibleWeb.Email do
def trial_over_email(user) do
new_email()
|> to(user)
|> bcc("uku@plausible.io")
|> from("Uku Taht <uku@plausible.io>")
|> tag("trial-over-email")
|> subject("Your Plausible trial has ended")