TicketReplyEmail

Email

Destek ekibinden gelen yanıt. Ajan avatar, tam cevap metni, Reply ve View CTA çifti.

Agent Reply

Preview

New Reply on Your Ticket

Ticket #SUP-4821

E

Emma

Acme Support · May 3, 2:15 PM

Hi John, I've investigated the issue and applied a fix to your account. Could you try the export again?
Reply View Ticket

© 2026 Acme Corp

Live preview
Code
// GET /theme/common/email/support/ticket-reply
res.render('theme/common/email/support/ticket-reply', {
  layout:    'layouts/blank',
  subject:   '[Ticket #' + ticket.id + '] New reply from the support team',
  fromName:  'Acme Corp Support',
  fromEmail: 'support@acme.example.com',
  toName:    user.name,
  toEmail:   user.email,
  company:   { name: 'Acme Corp', address: '...' },
  ticket: {
    id:         ticket.id,
    subject:    ticket.subject,
    agentName:  reply.author.firstName,
    agentRole:  'Acme Support',
    replyText:  reply.body,
    repliedAt:  reply.createdAt.toLocaleString(),
    viewUrl:    '/support/tickets/' + ticket.id,
    replyUrl:   '/support/tickets/' + ticket.id + '/reply',
  },
});
Source views/theme/common/email/support/ticket-reply.ejs