@david.barragan here’s the logs for the taiga async container after trying to invite a new member. It doesn’t show anything about bulk_create
[2024-03-11 18:37:20,343: INFO/MainProcess] Connected to amqp://amusement8223:**@taiga-async-rabbitmq:5672/taiga
[2024-03-11 18:37:20,401: INFO/MainProcess] mingle: searching for neighbors
[2024-03-11 18:37:21,484: INFO/MainProcess] mingle: all alone
[2024-03-11 18:37:34,700: INFO/MainProcess] Task taiga.timeline.service.push_to_timelines[162946cf-41ca-40e4-bbee-ccc89bad2c46] received
[2024-03-11 18:37:40,031: INFO/MainProcess] Task taiga.timeline.service.push_to_timelines[e3db0155-2a7f-4f0c-bf47-d7f8424dea03] received
[2024-03-11 18:37:47,426: INFO/MainProcess] Task taiga.timeline.service.push_to_timelines[63dbddee-90d6-4ce6-9e48-82bc27854db2] received
[2024-03-11 18:37:49,894: INFO/MainProcess] Task taiga.timeline.service.push_to_timelines[c5d2305a-fa62-4e9d-88ee-d05a13407779] received
[2024-03-11 18:38:32,713: INFO/MainProcess] Task taiga.timeline.service.push_to_timelines[17914068-9843-4c52-a9d8-310e8ca47415] received
[2024-03-11 18:38:56,868: INFO/Beat] Scheduler: Sending due task send-bulk-emails (taiga.projects.notifications.tasks.send_bulk_email)
[2024-03-11 18:38:56,925: INFO/MainProcess] Task taiga.projects.notifications.tasks.send_bulk_email[7fcf7ed7-a831-4406-941e-69986ee3ac4b] received
But when I check the response in dev tools to the API post it shows this:
Here’s what my .env looks like, I confirmed my smtp login works, I replaced with dummy data here, and have tried multiple accounts that work from different providers.
# Taiga's SMTP settings - Variables to send Taiga's emails to the users
EMAIL_BACKEND=smtp # use an SMTP server or display the emails in the console (either "smtp" or "console")
EMAIL_HOST=mail.domain.org # SMTP server address
EMAIL_PORT=465 # default SMTP port
EMAIL_HOST_USER=taiga@sub.domain.com # user to connect the SMTP server
EMAIL_HOST_PASSWORD=strongpassword
EMAIL_DEFAULT_FROM=taiga@sub.domain.com # default email address for the automated emails
# EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive (only set one of those to True)
EMAIL_USE_TLS=True # use TLS (secure) connection with the SMTP server
EMAIL_USE_SSL=False # use implicit TLS (secure) connection with the SMTP server
