From 975cab6c8f1c9ac43d930f5dc512909ec2fe9c36 Mon Sep 17 00:00:00 2001 From: Tom Naessens Date: Fri, 26 Jan 2024 13:48:56 +0100 Subject: [PATCH] Change default_from to student.ugent.be to avoid mail errors --- app/mailers/application_mailer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/mailers/application_mailer.rb b/app/mailers/application_mailer.rb index c8e3bc92..adac65bb 100644 --- a/app/mailers/application_mailer.rb +++ b/app/mailers/application_mailer.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true class ApplicationMailer < ActionMailer::Base - default from: "noreply@event.student.ugent.be" + default from: "noreply@student.ugent.be" end