跳转到内容

Resend

Mkdirs 使用 Resend 作为邮件服务,支持发送邮件、接收通知邮件、支持订阅功能。

配置

  1. Resend 创建一个账户

    如果您没有 Resend 账户,请按照他们提供的步骤进行 注册

    登录 Resend 后,按照他们提供的步骤 将您的域名添加到 Resend

  2. 获取 Resend API 密钥

    点击左侧导航栏的 API Keys,点击 Create API key 按钮,将密钥设置到 .env 文件中。

    .env
    # [only required if you want to authenticate users by email/password]
    RESEND_API_KEY=your_api_key

    Resend Keys

  3. 设置发送邮件的邮箱地址

    发送邮件时,例如注册邮件,邮件将来自以下邮箱地址:

    .env
    # [only required if you want to authenticate users by email/password]
    RESEND_EMAIL_FROM=[email protected]
  4. [可选] 设置接收通知邮件的邮箱地址

    当有新的提交时,将发送通知邮件到以下邮箱地址:

    .env
    # [only required if you want to receive notification emails]
    RESEND_EMAIL_ADMIN=[email protected]
  5. [可选] 获取订阅的 ID

    在 Resend 中创建一个新订阅,复制订阅 ID,然后将其设置到 .env 文件中。

    该变量用于支持网站的订阅功能,如果不需要订阅功能,可以跳过此步骤。

    .env
    # [only required if you want to support newsletter]
    RESEND_AUDIENCE_ID=your_audience_id

    Resend Audience

视频教程

延伸阅读