You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
297 B
11 lines
297 B
6 years ago
|
class UserMailer < ApplicationMailer
|
||
|
# 注意:这个地方一定要和你的邮箱服务域名一致
|
||
|
default from: 'educoder@trustie.org'
|
||
|
|
||
|
# 用户注册验证码
|
||
|
def register_email(mail, code)
|
||
|
@code = code
|
||
|
mail(to: mail, subject: '验证你的电子邮件')
|
||
|
end
|
||
|
end
|