Skip to content

Commit

Permalink
feat: 대표이메일 변경: [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
minsangKang committed Aug 11, 2024
1 parent 571ea13 commit f43bb0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project_Timer/Present/Setting/Main/SettingVC.swift
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ extension SettingVC: SettingActionDelegate {
if MFMailComposeViewController.canSendMail() {
let mail = MFMailComposeViewController()
mail.mailComposeDelegate = self
mail.setToRecipients(["freedeveloper97@gmail.com"])
mail.setToRecipients(["contact.timertiti@gmail.com"])
mail.setMessageBody("<p>\(Localized.string(.EmailMessage_Text_Message))</p>", isHTML: true)

present(mail, animated: true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ extension SignupSigninVC: MFMailComposeViewControllerDelegate {
if MFMailComposeViewController.canSendMail() {
let mail = MFMailComposeViewController()
mail.mailComposeDelegate = self
mail.setToRecipients(["freedeveloper97@gmail.com"])
mail.setToRecipients(["contact.timertiti@gmail.com"])
mail.setMessageBody("<p>\(self.transToHTML(text: text))</p>", isHTML: true)

present(mail, animated: true)
Expand Down

0 comments on commit f43bb0e

Please sign in to comment.