Announcement

Collapse
No announcement yet.

actinic email on order

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

    actinic email on order

    it is possible to change the subject line of the email that actinic sends to tell you there is an order.

    if it can't be done in V5 can it be done in V6

    #2
    Prompt -1, 234 contains the "Order number:" text that goes into the title.

    If you need to change more than that then the routine sends the email, the function that sends it is :

    sub GenerateCustomerMail

    and the lines that build the subject are near the end of that routine, it looks something like this:

    ($Status, $Message) = ACTINIC::SendMail($::g_sSmtpServer,
    $sRecipient, ACTINIC::GetPhrase(-1, 234) . " $::g_InputHash{ORDERNUMBER}",
    $sBody, $$::g_pSetupBlob{EMAIL});

    A search for 234 should take you straight there.


    ... actually that is all wrong, that is the customer confirmation email.

    The 'catalog order recieved' email takes the title from prompt -1, 309 and the text for the email is in -1. 310.

    It is still send my orderscipt.pl, but the dirty deed is done by Record order,

    ($Status, $Message) = ACTINIC::SendMail($::g_sSmtpServer, $$::g_pSetupBlob{EMAIL},
    ACTINIC::GetPhrase(-1, 309), ACTINIC::GetPhrase(-1, 310));

    again a search for 309 will get there quite quickly.

    Regards,
    Jan Strassen, Mole End Software - Plugins and Reports for Actinic V4 to V11, Sellerdeck V11 to V2018, Sellerdeck Cloud
    Visit our facebook page for the latest news and special offers from Mole End

    Top Quality Integrated label paper for Actinic and Sellerdeck
    A4 Paper with one or two peel off labels, free reports available for our customers
    Product Mash for Sellerdeck
    Link to Google Shopping and other channels, increase sales traffic, prices from £29.95
    Multichannel order processing
    Process Actinic, Sellerdeck, Amazon, Ebay, Playtrade orders with a single program, low cost lite version now available from £19.95

    Comment


      #3
      Hi,

      I also need to change the email subject and content but do not know where or how. Please can someone explain in simple terms how and where to do it?

      Thanks

      Comment


        #4
        @pwh

        Are you using v5? If not, a post with a real name might be answered in the correct version forum. It helps other users who search later to keep the answers filed under the appropriate version, and also means you can get the answer that applies to the version you are using.
        Bill
        www.egyptianwonders.co.uk
        Text directoryWorldwide Actinic(TM) shops
        BC Ness Solutions Support services, custom software
        Registered Microsoft™ Partner (ISV)
        VoIP UK: 0131 208 0605
        Located: Alexandria, EGYPT

        Comment

        Working...
        X