feat(email): add delivery adapters
Gmail and Graph request explicit send consent and classify provider rejection separately from uncertain transport failure. IMAP remains read-only; no send API is exposed.
This commit is contained in:
@@ -39,7 +39,7 @@ public sealed class EmailController(IEmailProviderRegistry providers) : Controll
|
||||
connection is not null,
|
||||
connection?.Address,
|
||||
CanRead: connection is not null,
|
||||
CanSend: false));
|
||||
CanSend: connection?.CanSend ?? false));
|
||||
}
|
||||
|
||||
return Ok(statuses);
|
||||
|
||||
Reference in New Issue
Block a user