i am trying to send mail using skpsmtpmessage . But the recipient will see id of SMTP authorization userid. The "fromEmail" variable is useless in this condition. How to send mail using another mail id .I can't change the sender name also.
Example
testMsg.fromEmail = @"[email protected]";
testMsg.relayHost = @"smtp.gmail.com";
testMsg.requiresAuth = YES;
testMsg.login = @"[email protected]";
testMsg.pass = @"mypassword";
recipient will see the sender name as "[email protected]". But i want "[email protected]" as the sender name. How i can send mail using "fromEmail"