解析服务器剩余密码接收邮件问题

发布于 2025-01-10 12:06:57 字数 1325 浏览 0 评论 0原文

我正在尝试在我的应用程序中实现其余密码,为此我已向我的服务器添加了一个电子邮件适配器,例如:

var parseServer = new ParseServer({
    ...
    verifyUserEmails: false, 
    emailVerifyTokenValidityDuration: 24 * 60 * 60,
    preventLoginWithUnverifiedEmail: false,
    emailAdapter: !hasSMTPInfo ? undefined : {
        module: 'parse-smtp-template',
        options: {
            port: env.EMAIL_PORT,
            host: env.EMAIL_HOST,
            user: env.EMAIL_USER,
            password: env.EMAIL_PASSWORD,
            fromAddress: env.EMAIL_FROMADDRESS,
            template: false,
            templatePath: env.EMAIL_TEMPLATEPATH
        }
    },

Rq:我已经使用了 [文档] [1] 中的解析服务器 api 电子邮件的文档,

然后我有实现 flutter 部分的代码,例如:

    final user = User(null, null, email);
     await user.requestPasswordReset().then((value) async {
       print(value.statusCode);
       AlertUtils.showSuccessDialog('Veuillez vérifier votre boîte de réception')
           .then((_) => Get.toNamed('/login'));
     }).catchError((err) {
       onDone.call();
       AlertUtils.showErrorDialog(err.message.toString());
     });

我的问题是响应状态为 200,所以一切都正确,但我无法收到任何重新启动 pw 的电子邮件。
[1]: https://www.npmjs.com/package/parse-smtp-模板

I'm trying to implement the rest Password in my application so to do that I have added an email adapter to my server, like:

var parseServer = new ParseServer({
    ...
    verifyUserEmails: false, 
    emailVerifyTokenValidityDuration: 24 * 60 * 60,
    preventLoginWithUnverifiedEmail: false,
    emailAdapter: !hasSMTPInfo ? undefined : {
        module: 'parse-smtp-template',
        options: {
            port: env.EMAIL_PORT,
            host: env.EMAIL_HOST,
            user: env.EMAIL_USER,
            password: env.EMAIL_PASSWORD,
            fromAddress: env.EMAIL_FROMADDRESS,
            template: false,
            templatePath: env.EMAIL_TEMPLATEPATH
        }
    },

Rq: I have used the documentation of parse server api email from [documentation][1]

then I have implement the code of flutter part like:

    final user = User(null, null, email);
     await user.requestPasswordReset().then((value) async {
       print(value.statusCode);
       AlertUtils.showSuccessDialog('Veuillez vérifier votre boîte de réception')
           .then((_) => Get.toNamed('/login'));
     }).catchError((err) {
       onDone.call();
       AlertUtils.showErrorDialog(err.message.toString());
     });

my problem is the status of response is 200 so every thing are right but I can't get any emails of restarting pw.
[1]: https://www.npmjs.com/package/parse-smtp-template

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文