mirror of
https://github.com/rustmailer/rustmailer.git
synced 2026-08-19 16:01:08 +00:00
c2996d9e39
- Added REST endpoint `POST /append-reply-to-draft/:account_id` that creates a reply draft linked to the original email thread with appropriate headers (`References`, `In-Reply-To`). - Added equivalent gRPC method for creating and appending reply drafts.
11 lines
245 B
Rust
11 lines
245 B
Rust
// Copyright © 2025 rustmailer.com
|
|
// Licensed under RustMailer License Agreement v1.0
|
|
// Unauthorized copying, modification, or distribution is prohibited.
|
|
|
|
pub mod auth;
|
|
pub mod error;
|
|
pub mod server;
|
|
pub mod service;
|
|
#[cfg(test)]
|
|
mod tests;
|