Jump to content

mobile number on mail alert html form


Recommended Posts

Hi all

My customers usually give the mobile phone number via registration!

I set up the mail alert module for myself but when I recived the alert about an order i saw there is no mobile number under delivery address and invoice address...

I try to put the neyt line in html but do not show the number just tis line

{delivery_phone_mobile} and {invoice_phone_mobile}


what could be the correct html code to show the mobile number???

thanks for advise
Link to comment
Share on other sites

Try to add two lines code to modules/mailalerts/mailalerts.php

Add line

'{delivery_phone_mobile}' => $delivery->phone_mobile,


Before line

'{delivery_phone}' => $delivery->phone,




Add line

'{invoice_phone_mobile}' => $invoice->phone_mobile,


before line

'{invoice_phone}' => $invoice->phone,




Then use the template you modified that use {invoice_phone_mobile} and {delivery_phone_mobile}

  • Like 1
Link to comment
Share on other sites

×
×
  • Create New...