1: package ru.emdev.EmForge.email.logger;
2:
3: import ru.emdev.EmForge.email.Email;
4:
5: /** This interface is used for logging all emails sent in the system */
6: publicinterface EmailLogger {
7: /** Store log information about email sent */
8:publicvoid logEmail(Email email);
9: }