NeoMutt  2025-12-11-911-gd8d604
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
recvcmd.h
Go to the documentation of this file.
1
22
23#ifndef MUTT_ATTACH_RECVCMD_H
24#define MUTT_ATTACH_RECVCMD_H
25
26#include "send/lib.h"
27
28struct AttachCtx;
29struct AttachPtrArray;
30struct Email;
31struct Mailbox;
32
33void attach_bounce_message (struct AttachPtrArray *aa, struct Mailbox *m);
34void mutt_attach_resend (struct AttachPtrArray *aa, struct Mailbox *m);
35void mutt_attach_forward (struct AttachPtrArray *aa, struct Email *e, struct AttachCtx *actx, SendFlags flags);
36void mutt_attach_reply (struct AttachPtrArray *aa, struct Mailbox *m, struct Email *e, struct AttachCtx *actx, SendFlags flags);
37void mutt_attach_mail_sender(struct AttachPtrArray *aa);
38
39#endif /* MUTT_ATTACH_RECVCMD_H */
void mutt_attach_mail_sender(struct AttachPtrArray *aa)
Compose an email to the sender in the email attachment.
Definition recvcmd.c:1074
void mutt_attach_reply(struct AttachPtrArray *aa, struct Mailbox *m, struct Email *e, struct AttachCtx *actx, SendFlags flags)
Attach a reply.
Definition recvcmd.c:885
void mutt_attach_resend(struct AttachPtrArray *aa, struct Mailbox *m)
Resend-message, from the attachment menu.
Definition recvcmd.c:255
void attach_bounce_message(struct AttachPtrArray *aa, struct Mailbox *m)
Bounce function, from the attachment menu.
Definition recvcmd.c:158
void mutt_attach_forward(struct AttachPtrArray *aa, struct Email *e, struct AttachCtx *actx, SendFlags flags)
Forward selected attachments.
Definition recvcmd.c:737
Convenience wrapper for the send headers.
uint32_t SendFlags
Definition send.h:64
A set of attachments.
Definition attach.h:65
The envelope/body of an email.
Definition email.h:39
A mailbox.
Definition mailbox.h:81