Skip to content

Commit

Permalink
chore: Update email subject and placeholder text for congratulation e…
Browse files Browse the repository at this point in the history
…mails to sellers after shop creation
  • Loading branch information
IdrisKulubi committed Aug 8, 2024
1 parent f05f36a commit 47ed1a1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion emailcongrats/congratulations-email.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default function CongratulationsEmail({
<Section className="mt-6 text-center">
<Text className="text-sm text-gray-500">
Thank you for choosing StrathMall. We&apos;re looking forward to
seeing your shop thrive🚀 and grow 🤗
seeing your shop thrive and grow 🤗
</Text>
<Text className="text-sm text-gray-500 mt-2">Best regards,</Text>
<Text className="text-sm text-gray-500">The StrathMall Team</Text>
Expand Down
2 changes: 1 addition & 1 deletion emailcongrats/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const sendCongratulatoryEmail = async ({
const res = await resend.emails.send({
from: SENDER_EMAIL,
to: seller.email,
subject: "🎉 Congratulations on setting up your shop!",
subject: "🎉 Congratulations on setting up your shop",
react: <CongratulationsEmail seller={seller} />,
});
console.log(res);
Expand Down
2 changes: 1 addition & 1 deletion emails/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const sendPurchaseReceipt = async ({
const res = await resend.emails.send({
from: SENDER_EMAIL,
to: order.user.email,
subject: "Order Confirmation🧾✨",
subject: "📦Order Confirmation🧾✨",
react: <PurchaseReceiptEmail order={order} />,
});
console.log(res);
Expand Down
2 changes: 1 addition & 1 deletion emails/purchase-receipt.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export default function PurchaseReceiptEmail({ order }: OrderInformationProps) {
<Body className="font-sans bg-white">
<Container className="max-w-xl p-4 md:p-6 bg-blue-50 rounded-lg shadow-md">
<Heading className="text-blue-600 text-3xl font-bold mb-4">
📦 Purchase Receipt 🧾
Purchase Receipt 🧾
</Heading>
<Section>
<Row>
Expand Down

0 comments on commit 47ed1a1

Please sign in to comment.