Overview

SMTP client, email parsing, template rendering, and message queue integration

📮

Reliable Delivery

Retry logic and queue management

🎨

Templates

HTML/Text templating with variables

📎

Attachments

File and inline attachments support

Packages

assets

Advanced assets implementation with high performance and reliability.

css

Advanced css implementation with high performance and reliability.

js

Advanced js implementation with high performance and reliability.

Quick Start Example

Get started with Email & Messaging:

use avx_email::{Email, SmtpClient};

// Send email
let email = Email::builder()
    .to("user@example.com")
    .subject("Hello")
    .html("

Welcome!

") .build()?; let client = SmtpClient::new("smtp.gmail.com")?; client.send(email).await?;