PHP Classes

File: start.php

Recommend this page to a friend!
  Classes of Istvan Dobrentei   OpenCart Order Email Template   start.php   Download  
File: start.php
Role: Example script
Content type: text/plain
Description: Example script
Class: OpenCart Order Email Template
Generate OpenCart HTML message templates
Author: By
Last change:
Date: 7 years ago
Size: 217 bytes
 

Contents

Class file image Download
<?php
require_once 'Class_LetterTester.php';

$orderId = 473; //here set an existing order number

$test = new LetterTester();
$test->generateOrderEmail($orderId); //see the output folder and change the template
?>