Send emails, newsletters, and notifications. Let users know about new features, updates, and more.
@Injectable()
export class TestService {
constructor(private readonly mailService: EmailHelperService) {}
async sendWelcomeEmail({ user }: Args) {
await this.mailService.send({
to: user.email,
subject: 'Welcome to Our Platform! 👋',
message: "We're excited to have you on board!",
previewText: 'Welcome to your new account',
user,
});
}
}
Customize Your Emails
Change colors, add images, and customize your email content with ease. Make your emails stand out.