OrderConfirmationEmail

Email

Sipariş onayı makbuzu. Satır kalemleri, ara toplam/vergi/toplam ve kargo adresi.

Order Confirmed

Preview

Order Confirmed!

Order #ORD-20260503-001

Pro Plan — Annual₺999.90
Design System ×2₺300.00
Total₺1,533.88
View Order Details

© 2026 Acme Corp

Live preview
Code
// GET /theme/common/email/order/confirmation
res.render('theme/common/email/order/confirmation', {
  layout:    'layouts/blank',
  subject:   'Order confirmed — #' + order.id,
  fromName:  'Acme Corp',
  fromEmail: 'noreply@acme.example.com',
  toName:    user.name,
  toEmail:   user.email,
  company:   { name: 'Acme Corp', address: '...' },
  order: {
    id:       order.id,
    date:     order.createdAt.toLocaleDateString(),
    items:    order.items,    // [{ name, variant, qty, price }]
    totals:   order.totals,   // { subtotal, discount, tax, shipping, total, currency }
    shipping: order.address,  // { fullName, addressLine1, city, country, postalCode }
    viewUrl:  '/orders/' + order.id,
  },
});
Source views/theme/common/email/order/confirmation.ejs