Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions internal/resend/src/client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class Resend {
try {
const result = await this.client.emails.send({
to: req.email,
from: "james@updates.unkey.dev",
from: "james@updates.unkey.com",
replyTo: this.replyTo,
subject: "Your Unkey trial has ended",
html,
Expand All @@ -48,7 +48,7 @@ export class Resend {
try {
const result = await this.client.emails.send({
to: req.email,
from: "james@updates.unkey.dev",
from: "james@updates.unkey.com",
replyTo: this.replyTo,
subject: "Your Unkey trial has ended",
html,
Expand All @@ -69,7 +69,7 @@ export class Resend {
try {
const result = await this.client.emails.send({
to: req.email,
from: "james@updates.unkey.dev",
from: "james@updates.unkey.com",
replyTo: this.replyTo,
subject: "Welcome to Unkey",
html,
Expand All @@ -93,7 +93,7 @@ export class Resend {
try {
const result = await this.client.emails.send({
to: req.email,
from: "james@updates.unkey.dev",
from: "james@updates.unkey.com",
replyTo: this.replyTo,
subject: "There was an issue with your payment",
html,
Expand All @@ -118,7 +118,7 @@ export class Resend {
try {
const result = await this.client.emails.send({
to: email,
from: "james@updates.unkey.dev",
from: "james@updates.unkey.com",
replyTo: this.replyTo,
subject: "Unkey root key exposed in public Github repository",
html: html,
Expand Down