@Slf4j
public class EmailNotification implements Notification {
@Override
public void send(String message) {
log.info("Sending Email: " + message);
}
}