Skip to content

Commit

Permalink
fix: Fixed the issue of senders name in email while using resend
Browse files Browse the repository at this point in the history
  • Loading branch information
mahimavarma committed Oct 2, 2023
1 parent a08f1d2 commit 7648a7d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export class ResendHandler extends BaseHandler {
super('resend', ChannelTypeEnum.EMAIL);
}
buildProvider(credentials: ICredentials, from?: string, senderName?: string) {
const config: { apiKey: string; from: string; senderName: string } = {
const config: { apiKey: string; from: string; senderName?: string } = {
from: from as string,
apiKey: credentials.apiKey as string,
senderName,
Expand Down

0 comments on commit 7648a7d

Please sign in to comment.