原代码:
    String smtpserver=request.getParameter("txtserver");
        String emailTo=request.getParameter("txtto");
        String fromMail=request.getParameter("txtfrom");
        String subject =request.getParameter("txtsubject");
        String body=request.getParameter("txtmessage");
        try{
            Properties props=new Properties();
            props.put("mail.transport.protocol","smtp");
            props.put("mail.smtp.host",smtpserver);
            props.put("mail.smtp.auth","true");
            
            PopupAuthenticator pop=new PopupAuthenticator("[email protected]","*******");
            Session mailsession=Session.getInstance(props,pop);
            mailsession.setDebug(true);
            
            Message msg=new MimeMessage(mailsession);
            msg.setFrom(new InternetAddress(fromMail));
            msg.setRecipients(Message.RecipientType.TO,InternetAddress.parse(emailTo));
            msg.setSentDate(new Date());
            msg.setSubject(subject);
            msg.setText(body);
            Transport.send(msg);
            out.println("邮件已成功发送到"+emailTo);
            
        }catch(Exception e){
            e.printStackTrace();
        }报错了:
DEBUG: setDebug: JavaMail version 1.3.2
DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
DEBUG SMTP: useEhlo true, useAuth true
DEBUG SMTP: useEhlo true, useAuth true
DEBUG SMTP: trying to connect to host "smtp.gmail.net", port 25, isSSL false
220 javeo.com ESMTP CommuniGate Pro 4.1.8
DEBUG SMTP: connected to host "smtp.gmail.net", port: 25EHLO fly
250-javeo.com domain name should be qualified fly
250-HELP
250-PIPELINING
250-ETRN
250-DSN
250-TURN
250-ATRN
250-SIZE
250-STARTTLS
250-8BITMIME
250 EHLO
DEBUG SMTP: Found extension "HELP", arg ""
DEBUG SMTP: Found extension "PIPELINING", arg ""
DEBUG SMTP: Found extension "ETRN", arg ""
DEBUG SMTP: Found extension "DSN", arg ""
DEBUG SMTP: Found extension "TURN", arg ""
DEBUG SMTP: Found extension "ATRN", arg ""
DEBUG SMTP: Found extension "SIZE", arg ""
DEBUG SMTP: Found extension "STARTTLS", arg ""
DEBUG SMTP: Found extension "8BITMIME", arg ""
DEBUG SMTP: Found extension "EHLO", arg ""
DEBUG SMTP: use8bit false
MAIL FROM:<[email protected]>
250 [email protected] sender accepted
RCPT TO:<[email protected]>
571 [email protected] prohibited. We do not relay
DEBUG SMTP: Invalid Addresses
DEBUG SMTP:   [email protected]
DEBUG SMTP: Sending failed because of invalid destination addresses
RSET
250 SMTP state reset
javax.mail.SendFailedException: Invalid Addresses;
  nested exception is:
class com.sun.mail.smtp.SMTPAddressFailedException: 571 [email protected] prohibited. We do not relay
报这个错是什么意思啊?
请大家帮忙看下,谢谢!