Error in Email Module

Hi all,

Can you help me with this error (see image below).
When I open an email that error appears.

Thanks…

Hi,
welcome to the Suite-community!

Those messages are notices. It’s recommended to disable the error reporting (at least disable notices, warnings, stricts and deprecated messages) -> please update the php.ini and restart your webserver.

hi,

Can you give some guide on how to do it?, thanks

Hi,
look for your current php.ini and search for
display_errors=On

change the value to Off and restart your webserver, the messages shouldn’t be visible anymore.

Alternatively, you can leave that setting as it is and disable specific messages with
error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT & ~E_WARNING

1 Like

thanks for the help :smiley: