We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f95e268 commit 62ad8eeCopy full SHA for 62ad8ee
app/mailers/user_mailer.rb
@@ -4,6 +4,10 @@
4
5
class UserMailer < ActionMailer::Base
6
def email_confirmation(user, origin = nil, language = nil)
7
+ # For the Elements course, emails often bounce because the course does not mention mooc.fi handles the technical implementation of the course.
8
+ # To protect our delivery rates we temporaily disable sending this email.
9
+ return if origin && origin.downcase.include?('elements')
10
+
11
@origin = origin
12
@user = user
13
token = user.verification_tokens.email.create!
0 commit comments