mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-09 13:56:08 +00:00
Implement SendEmailBlock (#137)
This commit is contained in:
parent
3d1b146470
commit
7562cd9c25
9 changed files with 309 additions and 56 deletions
|
@ -31,6 +31,6 @@ class WorkflowDefinitionHasDuplicateParameterKeys(BaseWorkflowException):
|
|||
)
|
||||
|
||||
|
||||
class DownloadFileMaxSizeExceeded(BaseWorkflowException):
|
||||
def __init__(self, max_size: int) -> None:
|
||||
super().__init__(f"Download file size exceeded the maximum allowed size of {max_size} MB.")
|
||||
class InvalidEmailClientConfiguration(BaseWorkflowException):
|
||||
def __init__(self, problems: list[str]) -> None:
|
||||
super().__init__(f"Email client configuration is invalid. These parameters are missing or invalid: {problems}")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue