Added cpl-mail
All checks were successful
All checks were successful
This commit is contained in:
@@ -14,24 +14,28 @@ jobs:
|
||||
|
||||
core:
|
||||
uses: ./.gitea/workflows/package.yaml
|
||||
needs: [prepare]
|
||||
with:
|
||||
working_directory: src/cpl_core
|
||||
secrets: inherit
|
||||
|
||||
query:
|
||||
uses: ./.gitea/workflows/package.yaml
|
||||
needs: [prepare]
|
||||
with:
|
||||
working_directory: src/cpl_query
|
||||
secrets: inherit
|
||||
|
||||
translation:
|
||||
uses: ./.gitea/workflows/package.yaml
|
||||
needs: [prepare]
|
||||
with:
|
||||
working_directory: src/cpl_translation
|
||||
secrets: inherit
|
||||
|
||||
mail:
|
||||
uses: ./.gitea/workflows/package.yaml
|
||||
needs: [prepare]
|
||||
with:
|
||||
working_directory: src/cpl_mail
|
||||
secrets: inherit
|
||||
@@ -12,24 +12,28 @@ jobs:
|
||||
|
||||
core:
|
||||
uses: ./.gitea/workflows/package.yaml
|
||||
needs: [prepare]
|
||||
with:
|
||||
working_directory: src/cpl_core
|
||||
secrets: inherit
|
||||
|
||||
query:
|
||||
uses: ./.gitea/workflows/package.yaml
|
||||
needs: [prepare]
|
||||
with:
|
||||
working_directory: src/cpl_query
|
||||
secrets: inherit
|
||||
|
||||
translation:
|
||||
uses: ./.gitea/workflows/package.yaml
|
||||
needs: [prepare]
|
||||
with:
|
||||
working_directory: src/cpl_translation
|
||||
secrets: inherit
|
||||
|
||||
mail:
|
||||
uses: ./.gitea/workflows/package.yaml
|
||||
needs: [prepare]
|
||||
with:
|
||||
working_directory: src/cpl_mail
|
||||
secrets: inherit
|
||||
@@ -1,6 +1,6 @@
|
||||
from abc import abstractmethod, ABC
|
||||
|
||||
from cpl_mail.email import EMail
|
||||
from cpl_mail.email_model import EMail
|
||||
|
||||
|
||||
class EMailClientABC(ABC):
|
||||
|
||||
@@ -6,7 +6,7 @@ from cpl_core.environment.application_environment_abc import ApplicationEnvironm
|
||||
from cpl_core.log.logger_abc import LoggerABC
|
||||
from cpl_core.utils.credential_manager import CredentialManager
|
||||
from cpl_mail.abc.email_client_abc import EMailClientABC
|
||||
from cpl_mail.email import EMail
|
||||
from cpl_mail.email_model import EMail
|
||||
from cpl_mail.email_client_settings import EMailClientSettings
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user