Release 4-8-6
This commit is contained in:
@ -43,7 +43,14 @@ def send_verification_email(user, activation_link):
|
||||
share_send_email(subject,body,user.email)
|
||||
|
||||
|
||||
|
||||
def send_reset_password_email(email,activation_link):
|
||||
context = {
|
||||
'name': email,
|
||||
'activation_link': activation_link,
|
||||
}
|
||||
logger.info(f"send_reset_password_email : {context}")
|
||||
subject, body = load_email_template('reset_password_email.txt', context)
|
||||
share_send_email(subject,body,email)
|
||||
|
||||
|
||||
# 既にユーザーになっている人にチームへの参加要請メールを出す。
|
||||
|
||||
Reference in New Issue
Block a user