-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
110b7b2
commit 744bee3
Showing
5 changed files
with
366 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ import dayjs from "dayjs"; | |
|
||
export async function sendEmail(artist, show, severity) { | ||
try { | ||
const data = await resend.sendEmail({ | ||
const { data, error } = await resend.emails.send({ | ||
from: "Refuge Worldwide <[email protected]>", | ||
to: artist.email, | ||
subject: subject(severity), | ||
|
@@ -25,11 +25,16 @@ export async function sendEmail(artist, show, severity) { | |
showId: show.sys.id, | ||
}), | ||
}); | ||
if (error) { | ||
throw new Error(error.name); | ||
} | ||
|
||
return data; | ||
} catch (error) { | ||
// send message to slack saying there was an issue sending the email | ||
console.log(error); | ||
sendSlackMessage( | ||
`Failed to send email request to ${artist.name}(${artist.email}) on show *${show.title}*. ${error}. <@U04HG3VHHEW>` | ||
`Failed to send email request to ${artist.name}(${artist.email}) on show *${show.title}*. ${error.name} - ${error.message}. <@U04HG3VHHEW>` | ||
); | ||
throw new Error(error); | ||
} | ||
|
@@ -40,7 +45,7 @@ export async function sendConfirmationEmail(show) { | |
show.artists.map(async (artist) => { | ||
if (artist.email) { | ||
try { | ||
const data = await resend.sendEmail({ | ||
const { data, error } = await resend.emails.send({ | ||
from: "Refuge Worldwide <[email protected]>", | ||
to: artist.email, | ||
subject: | ||
|
@@ -59,11 +64,17 @@ export async function sendConfirmationEmail(show) { | |
showId: show.id, | ||
}), | ||
}); | ||
|
||
if (error) { | ||
throw new Error(error.name); | ||
} | ||
|
||
return data; | ||
} catch (error) { | ||
// send message to slack saying there was an issue sending the email | ||
console.log(error); | ||
sendSlackMessage( | ||
`Failed to send email request to ${artist.name}(${artist.email}) on show *${show.title}*. ${error}. <@U04HG3VHHEW>` | ||
`Failed to send email request to ${artist.name}(${artist.email}) on show *${show.title}*. ${error.name} - ${error.message}. <@U04HG3VHHEW>` | ||
); | ||
} | ||
} | ||
|
@@ -72,21 +83,35 @@ export async function sendConfirmationEmail(show) { | |
} | ||
|
||
export async function sendArtworkEmail(artist, date) { | ||
const data = await resend.sendEmail({ | ||
from: "Refuge Worldwide <[email protected]>", | ||
to: artist.email, | ||
subject: | ||
"Your show artwork for " + dayjs(date).format("dddd") + " is now ready", | ||
reply_to: [ | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
], | ||
react: ShowArtworkEmail({ | ||
userName: artist.name, | ||
showDate: date, | ||
}), | ||
}); | ||
try { | ||
const { data, error } = await resend.emails.send({ | ||
from: "Refuge Worldwide <[email protected]>", | ||
to: artist.email, | ||
subject: | ||
"Your show artwork for " + dayjs(date).format("dddd") + " is now ready", | ||
reply_to: [ | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
], | ||
react: ShowArtworkEmail({ | ||
userName: artist.name, | ||
showDate: date, | ||
}), | ||
}); | ||
|
||
if (error) { | ||
throw new Error(error.name); | ||
} | ||
|
||
return data; | ||
} catch (error) { | ||
// send message to slack saying there was an issue sending the email | ||
console.log(error); | ||
sendSlackMessage( | ||
`Failed to send artwork email to ${artist.name}(${artist.email}). ${error.name} - ${error.message}. <@U04HG3VHHEW>` | ||
); | ||
} | ||
} | ||
|
||
function subject(severity: string) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.