Skip to content

Commit 17c1acd

Browse files
committed
added default email config in delivery properties
1 parent bd40a54 commit 17c1acd

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

packages/backend/src/config/getDeliveryServiceProperties.ts

+12-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,18 @@ const DEFAULT_DELIVERY_SERVICE_PROPERTIES: DeliveryServiceProperties = {
1313
messageTTL: 0,
1414
//100Kb
1515
sizeLimit: 100000,
16-
notificationChannel: [],
16+
notificationChannel: [
17+
{
18+
type: NotificationChannelType.EMAIL,
19+
config: {
20+
smtpHost: 'smtp.gmail.com',
21+
smtpPort: 587,
22+
smtpEmail: '',
23+
smtpUsername: '',
24+
smtpPassword: '',
25+
},
26+
},
27+
],
1728
};
1829

1930
export function getDeliveryServiceProperties(

0 commit comments

Comments
 (0)