I am sharing a link through which you can configure the email service in GAE.
https://developers.google.com/appengine/docs/java/mail/usingjavamail
You need javax.mail jar in you build path to configure it.
And make sure you use your admin email to send emails, with which you are deploying your application. And this will work only once deployed on Server.
Code to Send Email
import java.io.UnsupportedEncodingException;
import java.util.Properties;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
public class SendMail {
public void sendMail(String sendEmailFrom,String sendMailTo,String recipientName,String messageSubject,String messageText){
Properties prop = new Properties();
Session session = Session.getDefaultInstance(prop,null);
try{
Message msg = new MimeMessage(session);
msg.setFrom(new InternetAddress(sendEmailFrom));
msg.addRecipient(Message.RecipientType.TO, new InternetAddress(sendMailTo, "Mr./Ms. "+recipientName));
msg.setSubject(messageSubject);
msg.setText(messageText);
Transport.send(msg);
System.out.println("Successfull Delivery.");
} catch (AddressException e) {
e.printStackTrace();
} catch (MessagingException e) {
e.printStackTrace();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
}