Skip to content

Commit

Permalink
Merge branch 'Dev' of github.com:DDD-Community/PINGPONG-IOS into Dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Byeonjinha committed Nov 23, 2023
2 parents dc58f11 + f2a25a8 commit 0ff2102
Showing 1 changed file with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 0ff2102

Please sign in to comment.