Hi everyone,
I’m working on an n8n automation for a client who uses Proservice email hosting.
The mailbox can be accessed via Roundcube webmail and also in Outlook (configured through Proservice’s mail server).
Right now:
- I can successfully read incoming emails in n8n using POP3 (
pop.test.geport 143). - I can also send emails using SMTP (
smtp.test.geport 25).
The challenge:
I need to take an incoming email, process it in n8n, and then move it into the Drafts folder in the same mailbox so the user can open it later in Outlook or Roundcube and finish sending it.
Problem:
- POP3 doesn’t support uploading or moving emails.
- n8n’s Outlook (Microsoft Graph) nodes won’t work because the mailbox is not a Microsoft 365 / Exchange account — it’s hosted by Proservice.
- I believe IMAP (with APPEND to “Drafts” folder) could solve this, but I don’t have IMAP credentials from Proservice.
My questions:
- Has anyone done an IMAP APPEND to save a draft email in n8n (maybe in a Code node)?
- Does Proservice support IMAP for their hosted mailboxes, and if so, what’s the host/port for
@test.geaccounts? - Is there any workaround to create a Draft in a POP3-only setup?
Any suggestions or code examples would be appreciated.
Thanks in advance!
