react-share icon indicating copy to clipboard operation
react-share copied to clipboard

EmailShareButton cannot open email in new window

Open zozoens31 opened this issue 7 years ago • 7 comments

Clicking on EmailShareButton removes the current page and replace it with Gmail (if that's what is set as the user's mail manager in browser).

It would be nice to have the possibility to open it in a new page.

zozoens31 avatar Apr 24 '18 13:04 zozoens31

@zozoens31 you can override the default prop of openWindow to true. By default it is set to false.

hiradyazdan avatar Jul 03 '18 21:07 hiradyazdan

@hiradyazdan Any way to close the new window should the user's default email be an application rather than web-based? I'm finding stuff from here and here but unsure how to implement them with the current setup.

kpervin avatar Aug 27 '18 15:08 kpervin

Note that in v4, openWindow param got renamed to openShareDialogOnClick

pcorpet avatar Jun 08 '20 06:06 pcorpet

Setting openShareDialogOnClick does open the mailto in a popup, but the original page also handles the mailto so I end up with the same Gmail message in both windows.

krishom avatar Jul 30 '20 00:07 krishom

Setting openShareDialogOnClick does open the mailto in a popup, but the original page also handles the mailto so I end up with the same Gmail message in both windows.

I'm experiencing the same issue as this, has there been a fix deployed at all?

perryjsteward avatar Nov 18 '20 12:11 perryjsteward

For those still having this issue, you can pass an empty onClick callback to the component to prevent the page from loading the Gmail window:

<EmailShareButton
    onClick={() => {}}
    openShareDialogOnClick
    url={url}
>
	...
</EmailShareButton>

cassiocardoso avatar Dec 06 '20 09:12 cassiocardoso

For those still having this issue, you can pass an empty onClick callback to the component to prevent the page from loading the Gmail window:

<EmailShareButton
    onClick={() => {}}
    openShareDialogOnClick
    url={url}
>
	...
</EmailShareButton>

thanks so much your a life savior

coding404life avatar Mar 11 '21 19:03 coding404life