SMTP Email client - Automized Email Module
Email Sending Facility in Tiny ERP Tiny ERP Support the email sending facility from the beginning version, but if we go through this functionalities it seems for the specific purpose, like reply CRM Case, and Mass Mailing, its very easy to configure the smtp-server, user and password while running the TinyERP-Server. #---------------------------------------------------------- # Emails #---------------------------------------------------------- def email_send(email_from, email_to, subject, body, email_cc=None, email_bcc=None, on_error=False, reply_to=False, tinycrm=False): you may found this code in to the tools.misc.py file enables user to send the emails, because of its written for the specific purpose, the limitation of this facility is we can not send the file attachment, can not get the statistic regarding the email sent, and while configuration of the user, password and smtp-server we not get the confirmation like its configured successfully. more over ts better if we put th...