The Email class has the following methods:
addTo( java.lang.String email )
addCc( java.lang.String email )
addBcc( java.lang.String email )
addReplyTo( java.lang.String email )
and also:
setTo( java.util.Collection aCollection )
setCc( java.util.Collection aCollection )
setBcc( java.util.Collection aCollection )
but there is no setReplyTo( java.util.Collection aCollection ). Why not? It
seems like there should be, to match the other methods.