Is there an URL to open the Gmail compose window with a specific message ID in full-screen (pop-out)

email, gmail, gmail-api, google-api, google-api-client

Solution

Try this:

https://mail.google.com/mail?authuser=me@gmail.com#all/{message_id}

Just replace {message_id} with the actual ID string.

Problem

I use the new Gmail API to create a draft for my user. The API response provides the newly created message ID. I can then open the compose window with the URL`https://mail.google.com/mail/#drafts?compose=[message-id]`. However I would like to open a full-screen (popped-out) compose window. Is there an URL for that ? This URL must of course be parameterised with the message id. To be more precise, this is what I get, and this is what I want.

Original source