Skip to content

Commit

Permalink
[FIX] mail: help user using scheduled date field on mail
Browse files Browse the repository at this point in the history
Followup of odoo/odoo@582ac8d

Task-2860761

closes odoo#95062

Signed-off-by: Thibault Delavallee (tde) <tde@openerp.com>
  • Loading branch information
tde-banana-odoo committed Jul 1, 2022
1 parent 5baee4a commit d95b19e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion addons/mail/i18n/mail.pot
Expand Up @@ -3235,7 +3235,8 @@ msgstr ""
#: model:ir.model.fields,help:mail.field_mail_mail__scheduled_date
msgid ""
"If set, the queue manager will send the email after the date. If not set, "
"the email will be send as soon as possible."
"the email will be send as soon as possible. Unless a timezone is specified, "
"it is considered as being in UTC timezone."
msgstr ""

#. module: mail
Expand Down
2 changes: 1 addition & 1 deletion addons/mail/models/mail_mail.py
Expand Up @@ -81,7 +81,7 @@ def default_get(self, fields):
'Auto Delete',
help="This option permanently removes any track of email after it's been sent, including from the Technical menu in the Settings, in order to preserve storage space of your Odoo database.")
scheduled_date = fields.Char('Scheduled Send Date',
help="If set, the queue manager will send the email after the date. If not set, the email will be send as soon as possible.")
help="If set, the queue manager will send the email after the date. If not set, the email will be send as soon as possible. Unless a timezone is specified, it is considered as being in UTC timezone.")

@api.model_create_multi
def create(self, values_list):
Expand Down

0 comments on commit d95b19e

Please sign in to comment.