HI ,
I want to send email . if i send email locally(localhost) , its not working.
But its working when app on server.
Here is the code i used in my apps
Message msg = new MimeMessage(session);
msg.setFrom(new InternetAddress("[email protected]"));
msg.addRecipient(Message.RecipientType.TO, new
InternetAddress("[email protected]","Mr. User"));
msg.setSubject(subject);
msg.setContent(content, "text/html");
Transport.send(msg);
Is there Any way to send ?
Thanks in Advance
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.