0
我有一種情況,我需要將在UITextfields中輸入的詳細信息發送到管理員的郵件ID,而無需打開MFMailComposeViewController。在iPhone中使用MFMailComposeViewController發送郵件
這是應用程序的註冊部分,所以我會要求用戶輸入他們的個人信息,如姓名,郵件ID,DOB等,並且我想將這些信息作爲郵件發送給硬編碼的ID是管理員郵件ID。
我想要這個郵件發送時,按下注冊按鈕,這是保持在同一頁的底部。
我用MFMailComposeViewController,而不顯示通過避免,以防止模態視圖此語句的使用的作曲視圖被彈出時,我擊中登記按鈕
[self presentModalViewController:picker animated:YES];和我使用
- (void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError*)error使用聲明
[self mailComposeController:picker didFinishWithResult:MFMailComposeResultSent error:nil];
,其中選擇器是的
MFMailComposeViewController對象調用它
我該怎麼做才能實施?
請有人提醒我如何實現這一目標。
非常感謝大家。