Forwarding your mail
Send copies of incoming mail to an outside inbox, confirmed with a code.
Auto-forward is a mailbox setting: once inbox delivery is live, copies of mail to greatness@daaymail.com go to an outside inbox such as greatnessabolade@gmail.com.
The destination is separate from your recovery email and must be an outside address (not another @daaymail.com inbox). Forwarding only turns on after you confirm the code sent to that address.
GET BASE/v1/api/mail/forward
Cookie: <session>
POST BASE/v1/api/mail/forward/request
Cookie: <session>
Content-Type: application/json
{
"email": "greatnessabolade@gmail.com"
}
POST BASE/v1/api/mail/forward/confirm
Cookie: <session>
Content-Type: application/json
{
"email": "greatnessabolade@gmail.com",
"otp": "123456"
}
Example data after confirm:
{
"forwardToEmail": "greatnessabolade@gmail.com",
"forwardEnabled": true,
"forwardVerified": true
}
Disable (clears destination and flags):
POST BASE/v1/api/mail/forward/disable
Cookie: <session>
One-off forward
Share a stored message with new recipients (outbound send path — stores a sent copy). Does not use auto-forward settings.
POST BASE/v1/api/mail/messages/{id}/forward
Cookie: <session>
Content-Type: application/json
{
"to": ["friend@example.com"],
"includeAttachments": true,
"note": "FYI"
}
