File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3,14 +3,14 @@ def email_confirmation(user)
3
3
@user = user
4
4
token = user . verification_tokens . email . create!
5
5
@url = base_url + confirm_email_path ( @user . id , token . token )
6
- mail ( from : SiteSetting . value ( 'emails' ) [ 'from' ] , to : user . email , subject : "Confirm your TestMyCode Account email address" )
6
+ mail ( from : SiteSetting . value ( 'emails' ) [ 'from' ] , to : user . email , subject : "Confirm your mooc.fi account email address" )
7
7
end
8
8
9
9
def destroy_confirmation ( user )
10
10
@user = user
11
11
token = user . verification_tokens . delete_user . create!
12
12
@url = base_url + verify_destroying_user_path ( @user . id , token . token )
13
- mail ( from : SiteSetting . value ( 'emails' ) [ 'from' ] , to : user . email , subject : "Confirm deleting your TestMyCode account" )
13
+ mail ( from : SiteSetting . value ( 'emails' ) [ 'from' ] , to : user . email , subject : "Confirm deleting your mooc.fi account" )
14
14
end
15
15
16
16
You can’t perform that action at this time.
0 commit comments