Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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 URLhttps://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.

like image 954
cao Avatar asked Jul 03 '14 08:07

cao


People also ask

How do I pop messages in Gmail?

Hold down 'Shift' when you click 'Compose' to go straight to a floating window. Hold down 'Shift' when you click the 'pop-out arrow' in the top right corner. Pop the box out into a centered and much larger floating window by using the 'pop-out arrow' in the top right corner.


1 Answers

Try this:

https://mail.google.com/[email protected]#all/{message_id}

Just replace {message_id} with the actual ID string.

like image 153
Oded Breiner Avatar answered Oct 17 '22 00:10

Oded Breiner