Announcement

Collapse
No announcement yet.

Actinic 4 Customer Email Enquiry

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Actinic 4 Customer Email Enquiry

    Hi
    Just a quick question to see if anyone knows how to insert the date (only) into the Customer Receipt Email.

    <Actinic:ORDER_DATE/> = Date and Time

    I don't want the time in the email....

    (We do require the time on downloaded orders to Actinic though of course)

    Thanks

    #2
    Hi Graeme,

    Please try the below solution. I am unable to test it, cause I'm not sure what is the exact version of Actinic 4 you are using.


    Open 'OrderScript.pl' from the site1 folder and do a search for 'sub
    GenerateCustomerMail'.

    Now search for '$sDate = sprintf' and you will see the following

    Code:
    $sDate = sprintf("%4d/%02d/%02d %2.2d:%2.2d", $year, $mon, $mday, $hour, 
    $min);
    Change this to read

    Code:
    $sDate = sprintf("%4d/%02d/%02d", $year, $mon, $mday);
    Save and Exit and do an update.

    Regards,
    Robert.

    Comment


      #3
      Hi
      Thanks for that, worked a treat..

      Another one of those obvious hacks that I couldn't spot

      Comment

      Working...
      X