in meiner Anwendung kann ich E-Mail mit SMTP-Server senden, dafür habe ich meine korrekte E-Mail-ID und Passwort eingeben. aber wenn ich meine Gmail oder Yahoo Account Details eingeben, kann ich die Mail nicht senden. wie ich meine relayHost gesetzt habe = @ "smtp.gmail.com"; dann kann ich auch die Mail nicht senden.iPhone zum Senden von E-Mails mit SMTP-Server?
bitte hilf mir dabei.
folgende ist mein Code:
-(void)sendEMAIL{
SKPSMTPMessage *testMsg = [[SKPSMTPMessage alloc] init];
testMsg.fromEmail = str_uname;
NSLog(@"str_Uname=%@",testMsg.fromEmail);
testMsg.toEmail = str_info;
NSLog(@"autoemail=%@",testMsg.toEmail);
testMsg.relayHost = @"smtp.gmail.com";
testMsg.requiresAuth = YES;
testMsg.login = str_uname;
NSLog(@"autoelogin=%@",testMsg.login);
testMsg.pass = str_password;
NSLog(@"autopass=%@",testMsg.pass);
testMsg.subject = @"Schedule Sms And Email";
testMsg.wantsSecure = YES;
NSString *sendmsg=[[NSString alloc]initWithFormat:@"%@",str_info2];
NSLog(@"automsg=%@",sendmsg);
testMsg.delegate = self;
NSDictionary *plainPart = [NSDictionary dictionaryWithObjectsAndKeys:@"text/plain",kSKPSMTPPartContentTypeKey,
sendmsg, kSKPSMTPPartMessageKey,@"8bit",kSKPSMTPPartContentTransferEncodingKey,nil];
testMsg.parts = [NSArray arrayWithObjects:plainPart,nil];
[testMsg send];
}
-(void)messageSent:(SKPSMTPMessage *)message{
[message release];
}
-(void)messageFailed:(SKPSMTPMessage *)message error:(NSError *)error{
[message release];
}
das Problem ist, dass Google Mail und Yahoo verwendet benutzerdefinierte Authentifizierung für ihre SMTP-Dienste. – CarlJ