Does apache-commons-email show only one recipient when sending a group email?

1. Related code:
public static void sendSSLMessage (String hostName, int port, String username, String password, String subject, String massage, String. To) throws EmailException {

    Email email = new SimpleEmail();
    email.setCharset("UTF-8");
    email.setHostName(hostName);
    email.setSmtpPort(port);
    email.setSSLOnConnect(true);
    email.setAuthenticator(new DefaultAuthenticator(username, password));
    email.setFrom(username);
    email.addTo(to);
    email.setSubject(subject);
    email.setMsg(massage);
    email.send();
}

2. Screenshot: clipboard.png
3. There are multiple recipients, only one, 163 mailbox can show multiple, Ali enterprise mailbox only shows one

May.13,2021
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3ba4f-2c2b5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3ba4f-2c2b5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?