What error? You’ve installed and configured the openHAB Cloud Connector add-on?
Install and configure the Mail binding and use the actions as described in the docs.
Same as for mail. Install the xmppClient (I assume xmpp is what you mean) add-on or Telegram add-on and configure and use them as covered in their docs.
2025-10-24 16:39:27.145 [ERROR] [ting.notification.notification_mirko] - Rule execution failed: Traceback (most recent call last): File “/openhab/conf/automation/python/lib/openhab/helper.py”, line 208, in executeWrapper status = rule_obj(module, input) ^^^^^^^^^^^^^^^^^^^^^^^ File “/openhab/conf/automation/python/notification.py”, line 280, in notification_mirko mail = Mail.getActions(“mail:smtp:samplesmtp”) ^^^^ NameError: name ‘Mail’ is not defined
I’ve added this import:
from openhab.actions import NotificationAction, Mail
but is not correct
2025-10-24 16:44:41.701 [ERROR] [tion.pythonscripting.notification.py] - Traceback (most recent call last):2025-10-24 16:44:41.713 [ERROR] [tion.pythonscripting.notification.py] - File “/openhab/conf/automation/python/notification.py”, line 7, in from openhab.actions import NotificationAction, Mail2025-10-24 16:44:41.715 [ERROR] [tion.pythonscripting.notification.py] - ImportError, cannot import name ‘Mail’ from ‘openhab.actions’ (/openhab/conf/automation/python/lib/openhab/actions.py)2025-10-24 16:44:41.716 [ERROR] [ipt.internal.ScriptEngineManagerImpl] - Error during evaluation of script ‘/openhab/conf/automation/python/notification.py’: null in /openhab/conf/automation/python/notification.py at line number 1 at column number 1
I don’t know how modules are imported and used in the new Python add-on. What ever you do for openhab.triggers, do the same for openhab.actions to use them.
yes, the pythonscripting next is only available for openHAB >= 5.0.x and < 5.1.x
for openHAB >= 5.1.x, I will create a new marketplace version as soon as it is needed.
The idea of “pythonscripting next” is, that it contains all changes which are not merged yet, but stable enough for daily usage.
There is also a version for openHAB 4.3.x, based on the same codebase. But this is beta, because some changes in openHAB Core are missing, which are only available in openHAB >= 5.x.x