This commit is contained in:
Greg Burri 2025-05-07 20:12:49 +02:00
parent 198bff6e4a
commit 6f014ef238
19 changed files with 118 additions and 81 deletions

View file

@ -9,7 +9,7 @@ mock! {
pub EmailService {}
#[async_trait]
impl email::EmailServiceTrait for EmailService {
async fn send_email(&self, email: &str, title: &str, message: &str)
async fn send_email(&self, email_sender: &str, email_receiver: &str, title: &str, message: &str)
-> Result<(), email::Error>;
}
}