Enum AuthoredSendAct
- Namespace
- MailFathom.Application.Mail.Delivery.Governance
- Assembly
- MailFathom.Application.dll
Names what a caller asked for when it asked this deployment to send something.
public enum AuthoredSendAct
Fields
Forward = 3A copy of a message this deployment holds, sent to people the original never named.
NewMessage = 0A message that answers nothing.
Reply = 1An answer to whoever the message being answered asked for answers to.
ReplyToAll = 2An answer to everybody the message being answered was between.
Remarks
It is the act rather than the name of whatever published it, because a use case has no business knowing which
protocol reached it. On the MCP surface each value is exactly one tool — a new message is send_email, the two
replies are reply_to_email, and a forward is forward_email — so a record naming the act names the tool
call for anybody reading it, and stays correct for the entrypoint added next.