Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Empty email body when ticket-comment-added #480

Closed
1 of 2 tasks
geeeksameer opened this issue Feb 23, 2022 · 12 comments
Closed
1 of 2 tasks

Empty email body when ticket-comment-added #480

geeeksameer opened this issue Feb 23, 2022 · 12 comments
Labels

Comments

@geeeksameer
Copy link

Is this a BUG REPORT or FEATURE REQUEST?:

  • BUG
  • FEATURE

What happened:
Email body is empty when new comment is added on the ticket, email body just have the titles like:

Updated:
Ticket Group:
Ticket Submitted by:
Submitted Date:
Ticket Type:
Ticket Priority:
Tags:

Ticket Issue

Comments

What did you expect to happen:
All these labels should have values in the email.

How to reproduce it (as minimally and precisely as possible):
Add comment to the ticket

Anything else we need to know?:

Environment:

  • Trudesk Version: 1.1.11
  • OS (e.g. from /etc/os-release): Ubuntu
  • Node.JS Version: 12.9.0
  • MongoDB Version: 4.4.12 Enterprise
  • Is this hosted on cloud.trudesk.io: No
@polonel
Copy link
Owner

polonel commented Feb 24, 2022

Can you confirm if this is with the new "Beta Email Templates" or is the new templates disabled?

@geeeksameer
Copy link
Author

image

@geeeksameer
Copy link
Author

I tried it with above option disabled but the update email is still empty, but the ticket creation email looks fine, I am attaching more screenshots below.

@geeeksameer
Copy link
Author

geeeksameer commented Feb 24, 2022

Comment added to ticket email to subscribers

image

@geeeksameer
Copy link
Author

Ticket creation email to assignee

image

@geeeksameer
Copy link
Author

Account details email to new requester
Username missing in this one, password is fine present in the email...

image

@polonel
Copy link
Owner

polonel commented Feb 24, 2022

Thanks for the screenshots and info. I'm looking into the issue.

@geeeksameer
Copy link
Author

geeeksameer commented Feb 25, 2022

I appreciate your efforts and looking into this.
I am looking forward to the solution!

@geeeksameer
Copy link
Author

This fix certainly worked.
Great work man.

I really appreciate your efforts, you're doing tremendous job.

@Gill-Bates
Copy link

What’s the solution?

@geeeksameer
Copy link
Author

What’s the solution?

Click ⬇️ This is plug-n-play solution here, come on:

cd54631

polonel added a commit that referenced this issue Apr 10, 2022
# [1.2.0](v1.1.11...v1.2.0) (2022-04-10)

### Bug Fixes

* **appearance:** color scheme updates in production build [#469](#469) ([881a919](881a919))
* **appearance:** issue when uploading logo/favicon ([cb48e79](cb48e79))
* **log:** log file view ([0c2b180](0c2b180))
* **mailer:** missing data elements in mailer template [#480](#480) ([cd54631](cd54631))
* **profile:** profile image upload on new version of chrome ([cb72e75](cb72e75))
* **sidebar:** spacing when activating/deactivating notice ([d1b2b10](d1b2b10))
* **tickets:** disable uploading .svg as an attachment ([c4b262c](c4b262c))
* **tickets:** incorrect tickets removed from ticket view ([a943497](a943497))
* **ui:** input fields reset on clear [#452](#452) ([3b8682c](3b8682c))

### Features

* **maintenance:** added maintenance mode [#475](#475) ([a04f15b](a04f15b))
@suprematis
Copy link

suprematis commented Jul 23, 2023

@Gill-Bates and @geeeksameer I ran into the same issue while using version 1.1.8. I changed my docker-compose.yml file to use the latest image posted at Docker Hub polonel/trudesk and it fixed the issue. Now all customers are getting emails with all the correct and complete content.

version: '2.1'
services:
  trudesk:
    image: polonel/trudesk:latest
    restart: always
    ports:
      - "8118:8118"
    dns:
      - "1.1.1.1"
      - "8.8.8.8"
    environment:
      NODE_ENV: production
      TRUDESK_DOCKER: "true"
      TD_MONGODB_SERVER: mongo
      TD_MONGODB_DATABASE: trudesk
      USE_XFORWARDIP: "true"
    volumes:
      - trudesk_uploads:/usr/src/trudesk/public/uploads
      - trudesk_backups:/usr/src/trudesk/backups
  mongo:
    image: mongo:5.0-focal
    restart: always
    ports:
      - "27017:27017"
    volumes:
      - mongo:/var/lib/mongo
      - mongo_data:/data/db:rw
  elasticsearch:
    image: elasticsearch:8.0.0
    restart: always
    environment:
      - xpack.security.enabled=false
      - xpack.security.http.ssl.enabled=false
      - discovery.type=single-node
      - bootstrap.memory_lock=true
    mem_limit: 1073741824
    ulimits:
      memlock:
        soft: -1
        hard: -1
    ports:
      - "9200:9200"
      - "9300:9300"
    volumes:
      - elasticsearch:/usr/share/elasticsearch/data
volumes:
  trudesk_uploads:
  trudesk_backups:
  mongo:
  mongo_data:
  elasticsearch:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

4 participants