mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-12 22:14:54 +10:00
9 lines
306 B
TypeScript
9 lines
306 B
TypeScript
import { registerAs } from '@nestjs/config';
|
|
|
|
export default registerAs('sendgrid', () => ({
|
|
apiKey: process.env.SENDGRID_API_KEY,
|
|
forgotPasswordTemplateId: process.env.SENDGRID_FORGOT_PASSWORD_TEMPLATE_ID,
|
|
fromName: process.env.SENDGRID_FROM_NAME,
|
|
fromEmail: process.env.SENDGRID_FROM_EMAIL,
|
|
}));
|