ios 메 일 발송
4154 단어 메 일 발송
//
// ViewController.h
// EmailTest
//
// Created by Dwen on 13-2-25.
// Copyright (c) 2013 Dwen. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <MessageUI/MessageUI.h>
@interface ViewController : UIViewController<MFMailComposeViewControllerDelegate>
- (IBAction)sendMail:(id)sender;
@end
//
// ViewController.m
// EmailTest
//
// Created by Dwen on 13-2-25.
// Copyright (c) 2013 Dwen. All rights reserved.
//
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (IBAction)sendMail:(id)sender {
Class mailClass = (NSClassFromString(@"MFMailComposeViewController"));
if (!mailClass) {
NSLog(@" , mailto ");
return;
}
[self displayMailPicker];
}
-(void)displayMailPicker{
MFMailComposeViewController *mailPicker = [[MFMailComposeViewController alloc] init];
mailPicker.mailComposeDelegate = self;
//
[mailPicker setSubject: @"eMail "];
//
NSArray *toRecipients = [NSArray arrayWithObject: @"[email protected]"];
[mailPicker setToRecipients: toRecipients];
//
// NSArray *ccRecipients = [NSArray arrayWithObjects:@"[email protected]", @"[email protected]", nil];
// [mailPicker setCcRecipients:ccRecipients];
//
// NSArray *bccRecipients = [NSArray arrayWithObjects:@"[email protected]", nil];
// [mailPicker setBccRecipients:bccRecipients];
// //
// UIImage *addPic = [UIImage imageNamed: @"[email protected]"];
// NSData *imageData = UIImagePNGRepresentation(addPic); // png
// // mimeType:http://www.iana.org/assignments/media-types/index.html
// [mailPicker addAttachmentData: imageData mimeType: @"" fileName: @"Icon.png"];
//
// // pdf
// NSString *file = [self fullBundlePathFromRelativePath:@" C++ .pdf"];
// NSData *pdf = [NSData dataWithContentsOfFile:file];
// [mailPicker addAttachmentData: pdf mimeType: @"" fileName: @" C++ .pdf"];
NSString *emailBody = @"<font color='red'>eMail</font> ";
// , , , html
[mailPicker setMessageBody:emailBody isHTML:YES];
[self presentModalViewController: mailPicker animated:YES];
}
- (void)mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error{
[self dismissViewControllerAnimated:YES completion:^(){
NSLog(@" ");
}];
NSString *msg;
switch (result) {
case MFMailComposeResultCancelled:
msg = @" ";
break;
case MFMailComposeResultSaved:
msg = @" ";
break;
case MFMailComposeResultSent:
msg = @" , , ";
break;
case MFMailComposeResultFailed:
msg = @" ";
break;
default:
msg = @"default";
break;
}
}
@end
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Lumisoft.NET 에 깊이 들 어가 메 일 발송 기능 을 실현 하 는 방법 에 대한 상세 한 설명그 중에서 가장 관건 적 인 발송 코드 는 LumiSoft.NET 구성 요 소 를 어떻게 이용 하여 해당 하 는 메 일 대상 을 구성 하 는 지 하 는 것 입 니 다.다음은 메 일 직 투 의 발송 방식 을 먼저 소개...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.