diff --git a/notifications_consumer/processors/email/processor.py b/notifications_consumer/processors/email/processor.py
index 1616e45e403c16b23719063330d95b4e21284446..83fb029c4df23aafcf0e0145f2cb05cfb76497e1 100644
--- a/notifications_consumer/processors/email/processor.py
+++ b/notifications_consumer/processors/email/processor.py
@@ -36,7 +36,7 @@ class EmailProcessor(Processor):
 
         created_at = kwargs.get("created_at", "")
         try:
-            created_at = datetime.strptime(created_at, "%m/%d/%Y, %H:%M:%S").strftime("%m/%d/%Y, %H:%M:%S")
+            created_at = datetime.strptime(created_at, "%m/%d/%Y, %H:%M:%S").strftime("%d/%m/%Y, %H:%M:%S")
 
         except Exception:
             logging.exception("Failed to process created at date")