update: 修改 Email 发送格式

deeplink
胡宇飞 2024-04-09 15:47:50 +08:00
parent c0cf313903
commit bc703d1e12
1 changed files with 2 additions and 1 deletions

View File

@ -105,7 +105,8 @@ namespace Guru
if (string.IsNullOrEmpty(subject)) subject = GetDefaultMailTitle();
if (string.IsNullOrEmpty(body)) body = GetDefaultMailBody();
string url = $"mailto:{email}&subject={EscapeUrl(subject)}&body={EscapeUrl(body)}";
string url = $"mailto:{email}?subject={EscapeUrl(subject)}&body={EscapeUrl(body)}";
Debug.Log($"Send Emailto: {url}");
Application.OpenURL(url);
}