update to useSend
This commit is contained in:
@@ -24,10 +24,6 @@
|
|||||||
<a href="https://hub.docker.com/r/usesend/usesend"><img alt="Docker Automated build" src="https://img.shields.io/docker/pulls/usesend/usesend"></a>
|
<a href="https://hub.docker.com/r/usesend/usesend"><img alt="Docker Automated build" src="https://img.shields.io/docker/pulls/usesend/usesend"></a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<div align="center">
|
|
||||||
<img src="https://github.com/usesend/usesend/assets/24666922/68c41a6f-8fd1-4a3e-8d9b-987dda105c22" style="width: 100%;" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
## About this project
|
## About this project
|
||||||
|
|
||||||
As most of email products out there, useSend also uses Amazon SES under the hood to send emails. We provide an open and alternative way to send emails reliably and cheaply with a great dashboard. You can also use useSend manage contacts and send bulk emails(newsletter, product updates etc). We will take care of the subscriptions.
|
As most of email products out there, useSend also uses Amazon SES under the hood to send emails. We provide an open and alternative way to send emails reliably and cheaply with a great dashboard. You can also use useSend manage contacts and send bulk emails(newsletter, product updates etc). We will take care of the subscriptions.
|
||||||
|
@@ -29,7 +29,7 @@ export const domainRouter = createTRPCRouter({
|
|||||||
ctx.team.id,
|
ctx.team.id,
|
||||||
input.name,
|
input.name,
|
||||||
input.region,
|
input.region,
|
||||||
ctx.team.sesTenantId ?? undefined
|
ctx.team.sesTenantId ?? undefined,
|
||||||
);
|
);
|
||||||
}),
|
}),
|
||||||
|
|
||||||
@@ -62,7 +62,7 @@ export const domainRouter = createTRPCRouter({
|
|||||||
z.object({
|
z.object({
|
||||||
clickTracking: z.boolean().optional(),
|
clickTracking: z.boolean().optional(),
|
||||||
openTracking: z.boolean().optional(),
|
openTracking: z.boolean().optional(),
|
||||||
})
|
}),
|
||||||
)
|
)
|
||||||
.mutation(async ({ input }) => {
|
.mutation(async ({ input }) => {
|
||||||
return updateDomain(input.id, {
|
return updateDomain(input.id, {
|
||||||
@@ -100,10 +100,10 @@ export const domainRouter = createTRPCRouter({
|
|||||||
teamId: team.id,
|
teamId: team.id,
|
||||||
to: user.email,
|
to: user.email,
|
||||||
from: `hello@${domain.name}`,
|
from: `hello@${domain.name}`,
|
||||||
subject: "Unsend test email",
|
subject: "useSend test email",
|
||||||
text: "hello,\n\nUnsend is the best open source sending platform\n\ncheck out https://unsend.dev",
|
text: "hello,\n\nuseSend is the best open source sending platform\n\ncheck out https://usesend.com",
|
||||||
html: "<p>hello,</p><p>Unsend is the best open source sending platform<p><p>check out <a href='https://unsend.dev'>unsend.dev</a>",
|
html: "<p>hello,</p><p>useSend is the best open source sending platform<p><p>check out <a href='https://usesend.com'>usesend.com</a>",
|
||||||
});
|
});
|
||||||
}
|
},
|
||||||
),
|
),
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user