繁体   English   中英

Firebase 验证 Email 模板未更新

[英]Firebase Verification Email Template not updating

我遇到了 Firebase 验证电子邮件进入垃圾邮件文件夹的问题,我决定更改 email 模板,如下所示:

发件人姓名:从“noreply”到“AppName”。 :从“noreply@...firebaseapp.com”到“verification@...firebaseapp.com”

但我仍然收到旧的 noreply 电子邮件。 任何想法为什么?

我像这样(Swift)发送 email:

Auth.auth().sendSignInLink(toEmail: emailAddress, actionCodeSettings: actionCodeSettings)

请检查并告诉我你得到了什么。

        let actionCodeSettings = ActionCodeSettings()
        actionCodeSettings.url = URL(string: "firebase url") // firebase url looks like this firebase-productid.firebaseapp.com & firebase product id will find in googleservices-info.plist
        actionCodeSettings.handleCodeInApp = true
        actionCodeSettings.setIOSBundleID(Bundle.main.bundleIdentifier!)
        Auth.auth().sendSignInLink(toEmail:email, actionCodeSettings: actionCodeSettings) { error in
            if error != nil {
                print(error)
            }
            
        }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM