@NotNull(message = "emails should not be NULL")
final Iterable<String> emails
) throws IOException {
final Directives directives = new Directives();
for (final String email : emails) {
directives.xpath(
String.format("%s/email[.='%s']", this.xpath(), email)
).remove();
}
this.storage.apply(directives);
}