是否可以在 Odoo V13 及更高版本中通过自动操作发送短信?

Is it possible to send SMS through automated action in Odoo V13 and above?

我正在使用 Odoo Enterprise V13。我正在尝试创建一个自动操作,以便在创建潜在客户后立即使用特定的手机 phone 号码向销售经理发送短信。我发现了一些类似的东西 here 并尝试将其作为服务器操作中的 python 代码来模拟。

env['sms.composer'].action_send_sms({'numbers':'1386xxxxxxx', 'body':'New lead has been created in Odoo'})

我无法测试。但首先,创建 sms.composer 对象,然后发送它。 目前,您正在调用一个不带参数的函数。

my_sms = env['sms.composer'].create({'numbers':'1386xxxxxxx', 'body':'New lead has been created in Odoo'})
my_sms.action_send_sms()

https://github.com/odoo/odoo/blob/65e5b31f346030b6efcecf0de0ae448aeff7aae2/addons/sms/wizard/sms_composer.py#L148