MyApp

Getting Started

IntroductionInstallationPull Updates
Architecture

Setup

IDEAI AgentsMCP ServersEnvironment Variables

Workflow

Git WorkflowBuild & DeployTroubleshooting

Authentication

OverviewSetup & ConfigurationUsage & IntegrationTroubleshooting

Payments

OverviewSetup & ConfigurationUsage & IntegrationTroubleshooting

Supabase

OverviewSetup & ConfigurationTroubleshooting

Database

Database SetupPrisma ORMUsage & IntegrationMigrationsTroubleshooting

Storage

OverviewSetup & ConfigurationUsage & IntegrationTroubleshooting

Emails

OverviewSetup and ConfigurationUsage and IntegrationTroubleshooting

SEO

OverviewConfiguration & Best PracticesCustomization & Optimization

UI

OverviewSetup and ConfigurationThemingTroubleshooting
MyApp

Troubleshooting

Common email issues and solutions for Resend and Mailchimp integration

Common issues and solutions for email functionality.

Resend Issues

Mailchimp Issues

General Issues

Testing

Test Resend Locally

scripts/testResend.ts
import { resend } from '@/lib/resend/resend';

async function test() {
  const { data, error } = await resend.emails.send({
    from: 'Test <test@myapp.com>',
    to: 'your-email@example.com',
    subject: 'Test Email',
    html: '<p>Test</p>',
  });

  console.log('Data:', data);
  console.log('Error:', error);
}

test();

Test Mailchimp API

Terminal
curl -X POST \
  https://us6.api.mailchimp.com/3.0/lists/YOUR_AUDIENCE_ID/members \
  -u "anystring:YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"email_address":"test@example.com","status":"subscribed"}'

Additional Resources

  • Resend Documentation
  • Mailchimp API Documentation
  • React Email Documentation

How is this guide ?

Last updated on

Usage and Integration

Send transactional emails with Resend and manage newsletter subscriptions with Mailchimp

Overview

Learn how Plainform provides SEO essentials out of the box.

On this page

Resend Issues
Mailchimp Issues
General Issues
Testing
Test Resend Locally
Test Mailchimp API
Additional Resources