private void Mail_OnTap(object sender, GestureEventArgs e)
        {
            var s = new DarumaWishThemeToLocalizationString();
            var shareStatusTask = new EmailComposeTask
            {
                Body = _infoSharing.Quote
            };

            if (_infoSharing.WishTheme != DarumaWishTheme.NoSet)
            {
                shareStatusTask.Subject = s.GetLocalizationByTheme(_infoSharing.WishTheme);
            }

            //new ShareStatusTask { Status = Quote };
            shareStatusTask.Show();
        }