Features > Emails

Learn how to set up and configure email functionality in your Nexset application. This guide covers email service setup, sending emails, and best practices.

Email Service Setup

While Nexset supports various email providers, this guide focuses on Resend setup. Create a new account on Resend

Configure your domain:

  • 1

    Go to [Domains]

  • 2

    Click [+ Add Domain]

  • 3

    Add a subdomain (recommended: resend.yourdomain.com)

  • 4

    Complete DNS verification steps

  • 5

    Click [Verify DNS Records]

  • 6

    Wait for verification (may take a few minutes)

Create API key:

  • 1

    Go to [API Keys]

  • 2

    Click [+ Create API Key]

  • 3

    Name your key

  • 4

    Copy the API key (only shown once)

  • 5

    Add to .env.local as RESEND_API_KEY

Sending Emails

Nexset provides two methods for sending emails:

  • 1

    SMTP: Used for system emails like magic login links

  • 2

    Resend API: Used for all other emails via the sendEmail() function

Email Function Example

import { sendEmail } from '@/libs/resend';

// Example usage
await sendEmail({
  to: 'user@example.com',
  subject: 'Welcome to Nexset',
  html: '<p>Welcome to our platform!</p>',
  replyTo: config.resend.supportEmail,
});

Configuration

Required environment variables and configuration:

  • 1

    RESEND_API_KEY: Your Resend API key

  • 2

    config.resend.supportEmail: Your support email address

Email Types

  • 1

    Magic login links (SMTP)

  • 2

    Welcome emails

  • 3

    Abandoned cart notifications

  • 4

    Subscription updates

  • 5

    Support communications

Best Practices

  • 1

    Always use HTML templates for consistent email formatting

  • 2

    Include both HTML and plain text versions when possible

  • 3

    Set appropriate reply-to addresses

  • 4

    Use environment variables for sensitive data

  • 5

    Implement proper error handling

  • 6

    Test emails in different email clients

Limitations

Current limitations of the email system:

  • 1

    Resend does not support receiving emails

  • 2

    Email replies should be directed to your support email

  • 3

    Configure replyTo in sendEmail() to receive replies