We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cd2aae commit 67e8ed2Copy full SHA for 67e8ed2
apps/api/src/lib/nodemailer/ticket/status.ts
@@ -51,10 +51,10 @@ export async function sendTicketStatus(ticket: any) {
51
.sendMail({
52
from: replyto, // sender address
53
to: ticket.email,
54
- subject: `Ticket ${ticket.id} status is now ${
+ subject: `Ticket ${ticket.Number} status is now ${
55
ticket.isComplete ? "COMPLETED" : "OUTSTANDING"
56
}`, // Subject line
57
- text: `Hello there, Ticket ${ticket.id}, now has a status of ${
+ text: `Hello there, Ticket ${ticket.Number}, now has a status of ${
58
59
}`, // plain text body
60
html: htmlToSend,
0 commit comments