In my application i have following fields:
testMsg.fromEmail = @"support@gadsfd.co.uk";
testMsg.toEmail = @"%@",email;
testMsg.relayHost = @"smtp.gdsadfds.co.uk";
testMsg.requiresAuth = YES;
testMsg.login = @"support@dgadfda.co.uk";
testMsg.pass = @"ngdfadfdadfa";
testMsg.subject = @"The Money Shop Order Confirmation";
testMsg.wantsSecure = YES; // smtp.gmail.com doesn't work without TLS!
In testMsg.toEmail=@”some email”; i want to pass string from textField.text=email;
How can i do that
According to your comment