From 7d931980be25223b609aa2b9572f8e494106779c Mon Sep 17 00:00:00 2001 From: Marc Gorzala Date: Tue, 26 Mar 2024 11:32:13 +0100 Subject: [PATCH] mail sending --- .../documentation/arc42/src/06_runtime_view.adoc | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/main/jbake/content/documentation/arc42/src/06_runtime_view.adoc b/src/main/jbake/content/documentation/arc42/src/06_runtime_view.adoc index 4f6ab12..42c761f 100644 --- a/src/main/jbake/content/documentation/arc42/src/06_runtime_view.adoc +++ b/src/main/jbake/content/documentation/arc42/src/06_runtime_view.adoc @@ -25,7 +25,7 @@ kikeriki -> smtp: send the email .... 1. The E-Mail Command that some system sends... + - contains the complete Mail (as Text) and the recipients + contains the complete Mail (as Text) and its recipients 1. Kikeriki send the E-Mail via the SMTP-Server to the recipients ==== More detailed look on how kikeriki send the E-Mail @@ -43,8 +43,14 @@ participant "Outbox" participant "Outbox Job" as oj participant "SMTP-Server" as smtp +ss -> ka: send mail command +ka -> ae : throw application event +ae -> Outbox: store - +loop for each stored mail + oj -> Outbox : get Mail + Outbox -> smtp : send Mail +end @enduml ....