-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'Dev' of github.com:DDD-Community/PINGPONG-IOS into Dev
- Loading branch information
Showing
1 changed file
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -430,9 +430,14 @@ public struct ProfileView: View { | |
profileViewModel.gotoOtherSettingView.toggle() | ||
|
||
case "bugImage": | ||
guard let subject = "이런 버그가 있어요!".addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed), | ||
let body = "Your email body goes here.".addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed), | ||
let url = URL(string: "mailto:[email protected]?subject=\(subject)&body=\(body)") else { | ||
guard let subject = "문의/제휴".addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed), | ||
let body = """ | ||
아래 내용을 적어주세요. 빠르게 답변 드리겠습니다.\n | ||
• 이용 중인 기기/OS 버전:\n | ||
• 닉네임: \n | ||
• 문의 내용: | ||
""".addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed), | ||
let url = URL(string: "mailto:[email protected]?subject=\(subject)&body=\(body)") else { | ||
return | ||
} | ||
|
||
|