public Email setTo()

in src/main/java/org/apache/commons/mail/Email.java [863:872]


    public Email setTo(final Collection<InternetAddress> aCollection) throws EmailException
    {
        if (aCollection == null || aCollection.isEmpty())
        {
            throw new EmailException("Address List provided was invalid");
        }

        this.toList = new ArrayList<>(aCollection);
        return this;
    }