Doc

Nodemailer

What Is Nodemailer? Nodemailer is a popular npm package that lets you send emails from Node.js applications. It’s the most widely-used email library in the Node.js ecosystem. Nodemailer simplifies email sending by providing a clean, easy-to-use interface for connecting to SMTP servers. With Nodemailer, you can connect your JavaScript application to SendLayer’s SMTP server and […]
Doc

SMTPlib

What Is SMTPlib? SMTPlib is a Python library that lets you send emails using the SMTP protocol. It’s built into Python’s standard library, so you don’t need to install anything extra to use it. SMTPlib handles the connection to mail servers and manages the entire email sending process. With SMTPlib, you can connect your Python […]
Doc

TLS

What Is TLS? TLS is a security protocol that encrypts data sent over the internet to protect it from interception. When you send an email, TLS encrypts the connection between your mail server and the recipient’s server so that no one can read the message in transit. SendLayer uses TLS to secure all email transmissions, […]
Blog

React Email Template: How to Design Email Templates in React.js

Want to build professional email templates without wrestling with nested tables and inline styles? This comprehensive guide walks you through setting up React.Email, building reusable email templates with live previews, and integrating with SendLayer to send emails in production. Whether you're creating welcome emails, password resets, or notification systems, you'll find step-by-step instructions with working code examples.
How to design email templates in React.js
Doc

MCP

What Is MCP? MCP is an open standard that lets AI applications connect to external tools and data sources. It provides a standardized way for AI assistants like Claude to interact with services and APIs without custom integrations for each one. With MCP, you can give AI tools direct access to your email API, databases, […]
Blog

How to Send Emails from Cursor IDE Using SendLayer MCP

Tired of context-switching between your IDE and email client when sharing AI-generated reports or code summaries? Learn how to automate email sending directly from Cursor IDE using SendLayer's MCP (Model Context Protocol) server—no programming knowledge required. This comprehensive guide walks you through installing and configuring SendLayer's hosted MCP server.
How to send emails in Cursor AI using SendLayer MCP
Blog

How to Implement Password Reset in Django

Learn how to implement a secure password reset system in your Django applications using Django's built-in authentication framework. This comprehensive guide covers email backend configuration with SendLayer SMTP, URL routing setup, and custom template creation. Whether you're building user authentication for the first time or improving existing functionality, you'll find step-by-step instructions for sending password reset emails, validating secure tokens, and handling the complete reset workflow.
How to implement password reset in Django
Blog

How to Implement Password Reset in Laravel

Looking to implement a secure password reset system in your Laravel application? This comprehensive guide walks you through everything you need—from leveraging Laravel's built-in password reset features with Breeze to building custom API implementations and handling advanced use cases. Learn how to configure email settings with SendLayer's SMTP, customize token expiration times, build RESTful API endpoints for mobile apps, and create branded email templates.
Doc

Email Spoofing

What Is Email Spoofing? Email spoofing is a type of cyberattack where someone sends an email that appears to come from a different sender than the actual source. Attackers forge the “From” address in the email header to make the message appear to be from a trusted person or company. This technique is commonly used […]
Doc

Email Header

What Is an Email Header? An email header is the technical information at the top of every email that contains routing and delivery details. While you only see basic fields like “From,” “To,” and “Subject” in your inbox, the full email header includes much more information. It contains data about the sender’s server, authentication results, […]
Doc

Sender Reputation

What Is Sender Reputation? Sender reputation is a score that email providers assign to your domain and IP address based on your email sending behavior. Think of it like a credit score for email sending. The stronger your reputation, the more likely your emails will reach the inbox rather than the spam folder. Email providers […]
Doc

MIME

What Is MIME? MIME is a standard that allows emails to contain more than just plain text. It lets you include HTML formatting, images, attachments, and special characters in email messages. Without MIME, emails would only support basic ASCII text. MIME extends email functionality so you can send rich content like styled HTML emails, PDF […]
Doc

MX Record

What Is an MX Record? An MX record is a type of DNS record that tells email servers where to deliver emails for your domain. When someone sends an email to your address, the MX record directs that email to the correct mail server so it can reach your inbox. For example, if you receive […]
Doc

SSL

What Is SSL? SSL is a security protocol that encrypts data sent between two systems, like your computer and a website or email server. When you connect to a secure website or send an email through an encrypted connection, SSL scrambles the data so that only the intended recipient can read it. In email delivery, […]
Doc

Email Template

What Is an Email Template? An email template is a pre-designed, reusable email layout that maintains consistent formatting and branding across your messages. Instead of creating each email from scratch, you design a template once with your logo, colors, fonts, and structure. Then you simply fill in the specific content each time you send a […]
Doc

OTP

What Is an OTP? An OTP (one-time password) is a unique code that’s valid for only one login session or transaction. Unlike regular passwords you reuse, an OTP is generated anew each time and expires after a short period, usually within a few minutes. This makes OTPs much more secure than static passwords. OTPs are […]
Doc

SMTP Relay

What Is an SMTP Relay? An SMTP relay is a service that accepts your outgoing emails and forwards them to the recipient’s mail server. Think of it as a trusted intermediary that handles the delivery process for you. Instead of your website or application sending emails directly to recipients, the SMTP relay takes over and […]
Doc

Webhooks

What Is a Webhook? A webhook is an automated message sent from one system to another when a specific event happens. Unlike an API where you need to constantly check for updates, webhooks automatically push information to your application in real-time. With SendLayer, webhooks notify your application immediately when email events occur, like when a […]
Doc

SDK

What Is an SDK? An SDK is a collection of tools that helps developers integrate a service into their application. It includes pre-written code, documentation, and examples that make it faster and easier to connect your app with a service like SendLayer. Instead of writing all the code from scratch to connect to an API, […]
Blog

How to Fix ‘WordPress Not Sending Email’ Issue

Is your WordPress site failing to send emails? Email delivery issues plague WordPress users when password resets, contact forms, and WooCommerce notifications never reach their destination. This happens because WordPress uses PHP mail() by default, which lacks proper authentication and gets flagged as spam. This comprehensive guide shows you how to fix WordPress email problems using SMTP with SendLayer and the Easy WP SMTP plugin.