public Email setBcc()

in src/main/java/org/apache/commons/mail/Email.java [1081:1090]


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

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