trytonpsk-smtp/__init__.py

18 lines
462 B
Python
Raw Permalink Normal View History

2020-04-16 15:13:25 +02:00
# This file is part smtp module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
from trytond.pool import Pool
2021-05-30 15:02:19 +02:00
from . import smtp
2022-09-02 16:06:03 +02:00
from . import email_
2023-06-14 14:51:14 +02:00
from . import template
from . import web_service
2020-04-16 15:13:25 +02:00
def register():
Pool.register(
2022-09-02 16:06:03 +02:00
smtp.SmtpConnectionMail,
email_.Email,
2023-06-14 14:51:14 +02:00
template.Template,
web_service.WebAPI,
2020-04-16 15:13:25 +02:00
module='smtp', type_='model')