Documentation
Everything You Need to Master MXFuse
Comprehensive guides, API references, and examples to help you make the most of our email forwarding service.
Getting Started
Quick setup guide to get your email forwarding running in minutes
Core Concepts
Understand how MXFuse works and key concepts
API Reference
Complete API documentation for developers
Configuration
Advanced configuration and customization options
Popular Topics
Quick answers to common questions
Setting up SPF Records
Learn how to configure SPF records to ensure your forwarded emails pass authentication checks.
Read more →Troubleshooting Delivery Issues
Common issues and solutions for when emails aren't being delivered as expected.
Read more →API Rate Limits
Understanding API rate limits and best practices for high-volume applications.
Read more →Webhook Configuration
Set up webhooks to receive real-time notifications about email events in your application.
Read more →Quick Code Examples
Get started with our API in your favorite language
Create a Forwarding Rule
Node.js
const mxfuse = require('@mxfuse/sdk');
const client = new mxfuse.Client('YOUR_API_KEY');
await client.rules.create({
domain: 'example.com',
from: 'support@example.com',
to: ['team@company.com'],
enabled: true
});
cURL
curl -X POST https://api.mxfuse.com/v1/rules \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"domain": "example.com",
"from": "support@example.com",
"to": ["team@company.com"],
"enabled": true
}'