从电子邮箱中打开密码重置 link

Open password reset link from an email in electron

嗨,我有一个用 React 构建的 Electron 应用程序。我的密码重置令牌 link 是通过电子邮件发送的,然后 link 打开浏览器以重置用户密码。如果可能的话,我希望该电子邮件 link 在电子应用程序中打开。不幸的是,我还没有发现任何有用的东西,我什至不知道从哪里开始。任何信息将不胜感激。

这是我的功能,如果有帮助,我会向用户电子邮件发送令牌 link

app.post('/forgotPassword', async function(req, res){
    const name = req.body.name;
    const mail = req.body.email;
    crypto.randomBytes(32, (err, buffer)=>{
      if(err){
        console.log(err)
      }
      console.log(buffer)
      const token = buffer.toString("hex")
      console.log(token) 

    User.findOne({userName: name, email: mail})
      .then(user =>{
        if(!user){
          return res.json({
            status: 404,
            message: "No user found with Entered User name and email"
          })
        }
        user.resetToken = token
        user.expireToken = Date.now() + 1800000
        user.save().then((result)=>{
          transporter.sendMail({
            from: process.env.EMAIL,
            to: mail,
            subject: "Password Reset",
            html: `
              <p>Your requested password reset</p>
              <h5>Click on this <a href="http://localhost:3000/${token}">link<a/> to reset password</h5>
            `
          })
          res.json({
            status: 200,
            message: "Password Reset email Sent please check your inbox"
          })
        })
      })
    })
  })

总而言之:我希望用户密码重置 link(通过电子邮件发送)在电子而不是浏览器中打开

提前致谢:)

由于您希望来自用户邮件客户端(浏览器、outlook 等)的 link 打开您的电子应用程序,因此您已将您的应用程序注册为该类型 link" 在操作系统级别。

你可能需要为 myapp://password-reset-link 或类似的东西定义一个自定义协议(因为你不希望所有的 http links 都用你的电子应用程序打开)。

我自己还没有这样做,但我认为这个 link 看起来很有希望 https://glebbahmutov.com/blog/electron-app-with-custom-protocol/