public Email setReplyTo()

in src/main/java/org/apache/commons/mail/Email.java [1160:1169]


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

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