Good news. The email facility is working. I can email people documents and links. It actually was quite simple I just over-thought the whole process. I just added these lines to base.py:
# ---------------- EMAIL SETTINGS ------------------------- # Email address that error messages come from. SERVER_EMAIL = 'root@localhost' # The email backend to use. EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' # Host for sending email. EMAIL_HOST = 'localhost' # Port for sending email. EMAIL_PORT = 25 # Optional SMTP authentication information for EMAIL_HOST. EMAIL_HOST_USER = '' EMAIL_HOST_PASSWORD = '' EMAIL_USE_TLS = False EMAIL_USE_SSL = False EMAIL_SSL_CERTFILE = None EMAIL_SSL_KEYFILE = None EMAIL_TIMEOUT = None # Default email address to use for various automated correspondence from # the site managers. DEFAULT_FROM_EMAIL = 'webmaster@localhost' # Subject-line prefix for email messages send with django.core.mail.mail_admins # or ...mail_managers. Make sure to include the trailing space. EMAIL_SUBJECT_PREFIX = '[Mayan] ' On Monday, June 1, 2015 at 5:09:16 PM UTC+2, Gabriel Diteko wrote: > > Hi. > > How do you configure Mayan to use the email facility? I though it was > straightforward but alas. I see that you have to use django-celery and > mailer, but I'm not sure how to configure it all to work seamlessly. > > Thanks in advance. > -- --- You received this message because you are subscribed to the Google Groups "Mayan EDMS" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
