update: 修改 Email 发送格式
parent
c0cf313903
commit
bc703d1e12
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue