Inserisci questo codice nel punto desiderato dell'email transazionale .html (più in profondità nella cartella locale):
{{block type='core/template' area='frontend' template='email/shippingcheck.phtml' ordine=$order}}
Quindi crea il file nel template che stai utilizzando (app/design/frontend/default/default/template/email/shippingcheck.phtml) ad esempio. Inserisci il seguente contenuto:
getData('order')->getShippingAddress()->format('html') != $this->getData('order')->getBillingAddress()->format('html')) { echo $this->getData('order')->getShippingAddress()->format('html'); } else { echo 'L'indirizzo di fatturazione è uguale all'indirizzo di spedizione.'; } ?>