Overview
The email delivery feature will allow you to send invoice PDFs directly to your customers’ email addresses from within the application. This feature is currently in development and will be available in a future release.This feature is coming soon and is not yet available. The UI includes a disabled “Send Email” button on invoice detail pages as a preview of this upcoming functionality.
Planned functionality
When released, the email delivery feature will include:Email composition
- Recipient: Customer email from invoice (pre-filled)
- CC/BCC: Optional additional recipients
- Subject: Customizable subject line with default template (e.g., “Invoice #INV-123456 from [Company Name]”)
- Body: Editable message template with merge fields
- Attachment: Invoice PDF automatically attached
Email templates
Pre-configured email templates for common scenarios:- New invoice: “Here’s your invoice for [services/products]”
- Payment reminder: “Friendly reminder: Invoice #XXX is due on [date]”
- Overdue notice: “Payment overdue for Invoice #XXX”
- Payment received: “Thank you! Payment received for Invoice #XXX”
{{invoice_number}}: Invoice number{{customer_name}}: Customer name{{amount}}: Total amount with currency{{due_date}}: Payment due date{{company_name}}: Your company name
Delivery options
Planned delivery methods:- Direct browser email: Use
mailto:links to open default email client - SMTP integration: Configure your own email server
- Email service providers: Integration with:
- SendGrid
- Mailgun
- Amazon SES
- Postmark
Email tracking
Once sent, invoices will track:- Sent date: When email was sent
- Delivery status: Delivered, bounced, or failed
- Open tracking: Whether customer opened the email (if using service provider)
- Click tracking: Whether customer clicked links (if using service provider)
Current workaround
Until email delivery is available, you can:Option 1: Download and attach manually
- Click Download PDF on the invoice detail page
- Open your email client
- Compose a new email to your customer
- Attach the downloaded PDF
- Send
Option 2: Use browser mailto
While the button is disabled in the UI, you can manually use your browser’smailto: functionality:
- Download the PDF
- Note the customer’s email from the invoice
- Open your email client with:
mailto:[email protected]?subject=Invoice #INV-123456 - Attach the PDF
- Send
Technical implementation preview
The email feature will be implemented similarly to PDF generation, with a client-side approach:Expected code structure
Expected data structure
Email service configuration
When released, you’ll configure email delivery through Settings:SMTP settings
Service provider settings
Automatic email triggers
Planned automation features:Status-based triggers
- On status change to “sent”: Automatically email invoice to customer
- On status change to “paid”: Send payment confirmation
- On status change to “cancelled”: Send cancellation notice
Time-based triggers
- X days before due date: Send payment reminder
- On due date: Send “payment due today” notice
- X days after due date: Send overdue notice
- Weekly: Send overdue reminder for unpaid invoices
Configuration
Privacy and security considerations
When implemented, the email feature will:- Never store passwords in plain text: Encrypted before storage
- Support OAuth: For Gmail, Outlook, and other providers
- Allow local-only mode: Use
mailto:without external services - Respect data privacy: No invoice data sent to third parties unless you configure it
Expected release
The email delivery feature is planned for a future release. Progress can be tracked:- Current status: In Development
- Expected timeline: Q2 2026
- Priority: High
To be notified when email delivery is released, watch the project repository or check the changelog regularly.
Feature requests
If you have specific requirements for email delivery, such as:- Integration with a specific email service
- Custom email template requirements
- Bulk email capabilities
- Advanced automation rules