public void SupportButtonOnClick() { SoundManager.instance.Click(); string text = "*****@*****.**"; string text2 = FugoUtils.MyEscapeURL("Words Of Wonders Support Mail"); string str = "\n\n\n\n"; str = str + SystemInfo.deviceModel + "\n"; str = str + SystemInfo.operatingSystem + "\n"; str = str + Application.systemLanguage + "\n"; str = str + "v" + Application.version + "\n"; string text3 = str; str = text3 + "L: " + PlayerPrefsManager.GetLevel() + "\n"; str = str + "I: " + SystemInfo.deviceUniqueIdentifier + "\n"; if (PlayerPrefsManager.GetFBID() != string.Empty) { str = str + "FB: " + PlayerPrefsManager.GetFBID() + "\n"; } str = FugoUtils.MyEscapeURL(str); Application.OpenURL("mailto:" + text + "?subject=" + text2 + "&body=" + str); }