Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/src/notifications/notification.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export class NotificationService {
// if BCAN's is not defined in the environment
this.logger.log(`Sending email notification to: ${to}, subject: ${subject}`);
const fromEmail = process.env.NOTIFICATION_EMAIL_SENDER ||
'u&@nveR1ified-failure@dont-send.com';
'noreply@c4cneu.com';
Comment thread
lyannne marked this conversation as resolved.
Outdated
Comment thread
lyannne marked this conversation as resolved.
Outdated

const params: AWS.SES.SendEmailRequest = {
Source: fromEmail,
Expand Down
2 changes: 1 addition & 1 deletion backend/src/user/user.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ async getAllActiveUsers(): Promise<User[]> {
}

// remove actual email and add to env later!!
const fromEmail = process.env.NOTIFICATION_EMAIL_SENDER || 'c4cneu.bcan@gmail.com';
const fromEmail = process.env.NOTIFICATION_EMAIL_SENDER || 'noreply@c4cneu.com';
Comment thread
lyannne marked this conversation as resolved.
Outdated

const params: AWS.SES.SendEmailRequest = {
Source: fromEmail,
Expand Down
Loading