missive 0.7.0

Compose, deliver, preview, and test emails in Rust - pluggable providers with zero configuration code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
//! Email interceptors for modifying or blocking emails before delivery.
//!
//! Interceptors sit between your code and the mailer, transforming every email
//! that passes through. Use them to add headers, redirect recipients, or block
//! emails based on custom logic.
//!
//! # Example
//!
//! ```rust,ignore
//! use missive::providers::LocalMailer;
//! use missive::InterceptorExt;
//!
//! let mailer = LocalMailer::new()
//!     .with_interceptor(|email| {
//!         Ok(email.header("X-Custom", "value"))
//!     });
//! ```

use async_trait::async_trait;
use std::sync::atomic::{AtomicUsize, Ordering};

use crate::address::Address;
use crate::email::{Email, PreparedEmail};
use crate::error::MailError;
use crate::mailer::{DeliveryResult, Mailer};

static NEXT_INTERCEPTOR_ID: AtomicUsize = AtomicUsize::new(1);

#[cfg(not(all(target_family = "wasm", target_os = "unknown")))]
#[doc(hidden)]
pub trait InterceptorThreadSafety: Send + Sync {}

#[cfg(not(all(target_family = "wasm", target_os = "unknown")))]
impl<T: Send + Sync> InterceptorThreadSafety for T {}

#[cfg(all(target_family = "wasm", target_os = "unknown"))]
#[doc(hidden)]
pub trait InterceptorThreadSafety {}

#[cfg(all(target_family = "wasm", target_os = "unknown"))]
impl<T> InterceptorThreadSafety for T {}

/// A trait for intercepting and transforming emails before delivery.
///
/// Interceptors can modify the email or block it entirely by returning an error.
///
/// # Implementing Interceptor
///
/// For simple cases, use a closure:
///
/// ```rust,ignore
/// mailer.with_interceptor(|email| Ok(email.header("X-Foo", "bar")))
/// ```
///
/// For complex logic, implement the trait on a struct:
///
/// ```rust,ignore
/// struct TenantBranding { tenant_id: String }
///
/// impl Interceptor for TenantBranding {
///     fn intercept(&self, email: Email) -> Result<Email, MailError> {
///         Ok(email.header("X-Tenant-ID", &self.tenant_id))
///     }
/// }
/// ```
pub trait Interceptor: InterceptorThreadSafety {
    /// Transform an email before delivery.
    ///
    /// Return `Ok(email)` to continue with the (possibly modified) email.
    /// Return `Err(...)` to block the email from being sent.
    fn intercept(&self, email: Email) -> Result<Email, MailError>;
}

/// Blanket implementation for closures.
impl<F> Interceptor for F
where
    F: Fn(Email) -> Result<Email, MailError> + InterceptorThreadSafety,
{
    fn intercept(&self, email: Email) -> Result<Email, MailError> {
        (self)(email)
    }
}

/// A mailer wrapper that applies an interceptor before delivery.
///
/// Created by [`InterceptorExt::with_interceptor`].
#[derive(Debug)]
pub struct WithInterceptor<M, I> {
    inner: M,
    interceptor: I,
    marker_id: usize,
}

impl<M: Clone, I: Clone> Clone for WithInterceptor<M, I> {
    fn clone(&self) -> Self {
        Self {
            inner: self.inner.clone(),
            interceptor: self.interceptor.clone(),
            marker_id: self.marker_id,
        }
    }
}

impl<M, I> WithInterceptor<M, I> {
    /// Create a new interceptor wrapper.
    pub(crate) fn new(inner: M, interceptor: I) -> Self {
        Self {
            inner,
            interceptor,
            marker_id: NEXT_INTERCEPTOR_ID.fetch_add(1, Ordering::Relaxed),
        }
    }

    fn marker_id(&self) -> usize {
        self.marker_id
    }
}

#[cfg_attr(
    all(target_family = "wasm", target_os = "unknown"),
    async_trait(?Send)
)]
#[cfg_attr(not(all(target_family = "wasm", target_os = "unknown")), async_trait)]
impl<M, I> Mailer for WithInterceptor<M, I>
where
    M: Mailer,
    I: Interceptor,
{
    fn prepare_email(
        &self,
        mut email: Email,
        default_from: Option<Address>,
    ) -> Result<PreparedEmail, MailError> {
        let marker_id = self.marker_id();
        if !email.interceptor_applied(marker_id) {
            email = self.interceptor.intercept(email)?;
            email.mark_interceptor_applied(marker_id);
        }

        self.inner.prepare_email(email, default_from)
    }

    async fn deliver(&self, email: &Email) -> Result<DeliveryResult, MailError> {
        // Raw delivery has not been prepared by this wrapper yet, so apply the
        // interceptor once and let the inner mailer own preparation.
        let email = self.interceptor.intercept(email.clone())?;
        self.inner.deliver(&email).await
    }

    async fn deliver_prepared(&self, email: &PreparedEmail) -> Result<DeliveryResult, MailError> {
        if email.interceptor_applied(self.marker_id()) {
            return self.inner.deliver_prepared(email).await;
        }

        let marker_id = self.marker_id();
        let mut email = self.interceptor.intercept(email.as_email().clone())?;
        email.mark_interceptor_applied(marker_id);
        let email = self.inner.prepare_email(email, None)?;
        self.inner.deliver_prepared(&email).await
    }

    async fn deliver_many(&self, emails: &[Email]) -> Result<Vec<DeliveryResult>, MailError> {
        // Raw batch delivery mirrors deliver(): intercept once before handing
        // the unprepared emails to the inner mailer's pipeline.
        let intercepted: Result<Vec<Email>, MailError> = emails
            .iter()
            .map(|e| self.interceptor.intercept(e.clone()))
            .collect();
        self.inner.deliver_many(&intercepted?).await
    }

    async fn deliver_many_prepared(
        &self,
        emails: &[PreparedEmail],
    ) -> Result<Vec<DeliveryResult>, MailError> {
        let marker_id = self.marker_id();
        if emails
            .iter()
            .all(|email| email.interceptor_applied(marker_id))
        {
            return self.inner.deliver_many_prepared(emails).await;
        }

        let emails = emails
            .iter()
            .map(|email| {
                if email.interceptor_applied(marker_id) {
                    return Ok(email.clone());
                }

                let mut email = self.interceptor.intercept(email.as_email().clone())?;
                email.mark_interceptor_applied(marker_id);
                self.inner.prepare_email(email, None)
            })
            .collect::<Result<Vec<_>, MailError>>()?;

        self.inner.deliver_many_prepared(&emails).await
    }

    fn validate_batch(&self, emails: &[PreparedEmail]) -> Result<(), MailError> {
        self.inner.validate_batch(emails)
    }

    fn provider_name(&self) -> &'static str {
        self.inner.provider_name()
    }

    fn validate_config(&self) -> Result<(), MailError> {
        self.inner.validate_config()
    }
}

/// Extension trait for adding interceptors to any mailer.
pub trait InterceptorExt: Mailer + Sized {
    /// Wrap this mailer with an interceptor.
    ///
    /// The interceptor will be called for every email before it is sent.
    /// Interceptors can modify the email or block it by returning an error.
    ///
    /// # Example
    ///
    /// ```rust,ignore
    /// use missive::providers::LocalMailer;
    /// use missive::interceptor::InterceptorExt;
    ///
    /// let mailer = LocalMailer::new()
    ///     .with_interceptor(|email| {
    ///         Ok(email.header("X-Debug", "true"))
    ///     });
    /// ```
    ///
    /// # Chaining
    ///
    /// Multiple interceptors can be chained:
    ///
    /// ```rust,ignore
    /// let mailer = LocalMailer::new()
    ///     .with_interceptor(add_tracking)
    ///     .with_interceptor(validate_recipients)
    ///     .with_interceptor(add_branding);
    /// ```
    #[must_use = "with_interceptor returns a wrapped mailer; chain or assign the returned value"]
    fn with_interceptor<I>(self, interceptor: I) -> WithInterceptor<Self, I>
    where
        I: Interceptor,
    {
        WithInterceptor::new(self, interceptor)
    }
}

// Blanket implementation for all Mailers
impl<M: Mailer + Sized> InterceptorExt for M {}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::client::EmailClient;
    use std::sync::{Arc, Mutex};

    struct AddHeader {
        name: &'static str,
        value: &'static str,
    }

    impl Interceptor for AddHeader {
        fn intercept(&self, email: Email) -> Result<Email, MailError> {
            Ok(email.header(self.name, self.value))
        }
    }

    #[test]
    fn test_closure_interceptor_compiles() {
        fn assert_interceptor<I: Interceptor>(_: I) {}

        let closure = |email: Email| -> Result<Email, MailError> { Ok(email) };
        assert_interceptor(closure);
    }

    #[test]
    fn test_struct_interceptor_compiles() {
        fn assert_interceptor<I: Interceptor>(_: I) {}

        let interceptor = AddHeader {
            name: "X-Test",
            value: "test",
        };
        assert_interceptor(interceptor);
    }

    #[derive(Clone, Default)]
    struct RecordingMailer {
        subjects: Arc<Mutex<Vec<String>>>,
    }

    impl RecordingMailer {
        fn subjects(&self) -> Vec<String> {
            self.subjects
                .lock()
                .unwrap_or_else(std::sync::PoisonError::into_inner)
                .clone()
        }
    }

    #[cfg_attr(
        all(target_family = "wasm", target_os = "unknown"),
        async_trait(?Send)
    )]
    #[cfg_attr(not(all(target_family = "wasm", target_os = "unknown")), async_trait)]
    impl Mailer for RecordingMailer {
        async fn deliver_prepared(
            &self,
            email: &PreparedEmail,
        ) -> Result<DeliveryResult, MailError> {
            self.subjects
                .lock()
                .unwrap_or_else(std::sync::PoisonError::into_inner)
                .push(email.as_email().subject_line().to_string());
            Ok(DeliveryResult::new("recorded"))
        }
    }

    #[tokio::test]
    async fn email_client_applies_interceptor_once() {
        let recorder = RecordingMailer::default();
        let mailer = recorder.clone().with_interceptor(|email: Email| {
            let subject = format!("{}!", email.subject_line());
            Ok(email.subject(subject))
        });
        let email = Email::new()
            .from("sender@example.com")
            .to("recipient@example.com")
            .subject("Hi");

        EmailClient::new(mailer).deliver(email).await.unwrap();

        assert_eq!(recorder.subjects(), vec!["Hi!"]);
    }

    #[tokio::test]
    async fn email_client_deliver_many_applies_interceptor_once_per_email() {
        let recorder = RecordingMailer::default();
        let mailer = recorder.clone().with_interceptor(|email: Email| {
            let subject = format!("{}!", email.subject_line());
            Ok(email.subject(subject))
        });
        let emails = [
            Email::new()
                .from("sender@example.com")
                .to("one@example.com")
                .subject("One"),
            Email::new()
                .from("sender@example.com")
                .to("two@example.com")
                .subject("Two"),
        ];

        EmailClient::new(mailer).deliver_many(emails).await.unwrap();

        assert_eq!(recorder.subjects(), vec!["One!", "Two!"]);
    }

    #[tokio::test]
    async fn email_client_stacked_interceptors_apply_once_each_in_order() {
        let recorder = RecordingMailer::default();
        let calls = Arc::new(Mutex::new(Vec::new()));
        let inner_calls = Arc::clone(&calls);
        let outer_calls = Arc::clone(&calls);
        let mailer = recorder
            .clone()
            .with_interceptor(move |email: Email| {
                inner_calls
                    .lock()
                    .unwrap_or_else(std::sync::PoisonError::into_inner)
                    .push("inner");
                let subject = format!("{}I", email.subject_line());
                Ok(email.subject(subject))
            })
            .with_interceptor(move |email: Email| {
                outer_calls
                    .lock()
                    .unwrap_or_else(std::sync::PoisonError::into_inner)
                    .push("outer");
                let subject = format!("{}O", email.subject_line());
                Ok(email.subject(subject))
            });
        let email = Email::new()
            .from("sender@example.com")
            .to("recipient@example.com")
            .subject("Hi");

        EmailClient::new(mailer).deliver(email).await.unwrap();

        assert_eq!(recorder.subjects(), vec!["HiOI"]);
        let calls = calls
            .lock()
            .unwrap_or_else(std::sync::PoisonError::into_inner)
            .clone();
        assert_eq!(calls, vec!["outer", "inner"]);
    }

    #[tokio::test]
    async fn direct_deliver_prepared_applies_interceptor_once() {
        let recorder = RecordingMailer::default();
        let mailer = recorder.clone().with_interceptor(|email: Email| {
            let subject = format!("{}!", email.subject_line());
            Ok(email.subject(subject))
        });
        let prepared = PreparedEmail::new(
            Email::new()
                .from("sender@example.com")
                .to("recipient@example.com")
                .subject("Hi"),
        )
        .unwrap();

        mailer.deliver_prepared(&prepared).await.unwrap();

        assert_eq!(recorder.subjects(), vec!["Hi!"]);
    }

    #[tokio::test]
    async fn direct_deliver_many_prepared_applies_interceptor_once_per_email() {
        let recorder = RecordingMailer::default();
        let mailer = recorder.clone().with_interceptor(|email: Email| {
            let subject = format!("{}!", email.subject_line());
            Ok(email.subject(subject))
        });
        let emails = [
            PreparedEmail::new(
                Email::new()
                    .from("sender@example.com")
                    .to("one@example.com")
                    .subject("One"),
            )
            .unwrap(),
            PreparedEmail::new(
                Email::new()
                    .from("sender@example.com")
                    .to("two@example.com")
                    .subject("Two"),
            )
            .unwrap(),
        ];

        mailer.deliver_many_prepared(&emails).await.unwrap();

        assert_eq!(recorder.subjects(), vec!["One!", "Two!"]);
    }

    #[tokio::test]
    async fn prepared_email_from_different_interceptor_stack_is_intercepted() {
        let recorder = RecordingMailer::default();
        let prepare_mailer = RecordingMailer::default().with_interceptor(|email: Email| {
            let subject = format!("{}A", email.subject_line());
            Ok(email.subject(subject))
        });
        let deliver_mailer = recorder.clone().with_interceptor(|email: Email| {
            let subject = format!("{}B", email.subject_line());
            Ok(email.subject(subject))
        });
        let email = Email::new()
            .from("sender@example.com")
            .to("recipient@example.com")
            .subject("Hi");
        let prepared = prepare_mailer.prepare_email(email, None).unwrap();

        deliver_mailer.deliver_prepared(&prepared).await.unwrap();

        assert_eq!(recorder.subjects(), vec!["HiAB"]);
    }
}