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
According to the comments, the _text and _html attributes in FooterSettings are of type str, which will cause an error when calling the get() method of mail.
/usr/local/lib/python3.10/site-packages/sendgrid/helpers/mail/footer_settings.py in get(self)
88
89 if self.text is not None:
---> 90 footer_settings["text"] = self.text.get()
91
92 if self.html is not None:
AttributeError: 'str' object has no attribute 'get'
The text was updated successfully, but these errors were encountered:
According to the comments, the _text and _html attributes in FooterSettings are of type str, which will cause an error when calling the get() method of mail.
/usr/local/lib/python3.10/site-packages/sendgrid/helpers/mail/footer_settings.py in get(self)
88
89 if self.text is not None:
---> 90 footer_settings["text"] = self.text.get()
91
92 if self.html is not None:
AttributeError: 'str' object has no attribute 'get'
The text was updated successfully, but these errors were encountered: