diff --git a/pom.xml b/pom.xml
index 7956250..f15c87c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -68,6 +68,10 @@
io.quarkus
quarkus-mailer
+
+ io.quarkus
+ quarkus-resteasy-mutiny
+
io.quarkus
quarkus-junit5
diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties
index 2d02a15..69c99b0 100644
--- a/src/main/resources/application.properties
+++ b/src/main/resources/application.properties
@@ -11,4 +11,12 @@ quarkus.datasource.jdbc.url = jdbc:postgresql://localhost:5432/toto
# drop and create the database at startup (use `update` to only update the schema)
quarkus.hibernate-orm.database.generation = drop-and-create
-covas.schema.create = true
\ No newline at end of file
+covas.schema.create = true
+
+quarkus.mailer.auth-methods=DIGEST-MD5 CRAM-SHA256 CRAM-SHA1 CRAM-MD5 PLAIN LOGIN
+quarkus.mailer.from=valczebackup@gmail.com
+quarkus.mailer.host=smtp.gmail.com
+quarkus.mailer.port=465
+quarkus.mailer.ssl=true
+quarkus.mailer.username=valczebackup@gmail.com
+quarkus.mailer.password=aohrpmqvxldwyebs
\ No newline at end of file