You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I go to set the body of an email it doesnt actually overwrite the body it just adds onto the body, I cannot find a way to completely replace the body so believe that this is a bug, below is an example code and an example result. If I am wrong can you please guide me on how to replace the body? Thank you
Hi,
When I go to set the body of an email it doesnt actually overwrite the body it just adds onto the body, I cannot find a way to completely replace the body so believe that this is a bug, below is an example code and an example result. If I am wrong can you please guide me on how to replace the body? Thank you
m = account.new_message()
m.to.add('######')
m.subject = message_fwd_subject
m.body = 'test'
m.body = 'test'
m.send()
The result of the above is:
test
test
When I expect it to just be:
test
The text was updated successfully, but these errors were encountered: