mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-16 18:29:40 +00:00
Email params should use str when injecting into the body (#854)
This commit is contained in:
parent
d4a050c2a6
commit
5b136b55e0
1 changed files with 1 additions and 1 deletions
|
@ -917,7 +917,7 @@ class SendEmailBlock(Block):
|
|||
if self.body and workflow_run_context.has_parameter(self.body) and workflow_run_context.has_value(self.body):
|
||||
# We're purposely not decrypting the body parameter value here because we don't want to expose secrets
|
||||
body_parameter_value = workflow_run_context.get_value(self.body)
|
||||
msg.set_content(body_parameter_value)
|
||||
msg.set_content(str(body_parameter_value))
|
||||
else:
|
||||
msg.set_content(self.body)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue