Announcement

Collapse
No announcement yet.

Auto CC order shipped email

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

    Auto CC order shipped email

    Hi if i double click an order and then view the mail, I can adda a cc email to send the order shipped or any other email.

    Is there anyway of automating this so that it always has the same email rather than me manually pasting in the address i want?
    It will always be the same email address that i want to CC.

    Thanks
    http://www.itwiz.co.uk

    http://www.AntiV.net - The Discount Antivirus Store

    #2
    You can be copied in on the confirmation email by adding your email into the setting in business settings. To be copied in on any others would mean a script change I expect.

    Comment


      #3
      thanks lee, but i specifically need the shipped email etc to be auto CC'd.

      If anyone can point me at the script it would be a start.
      http://www.itwiz.co.uk

      http://www.AntiV.net - The Discount Antivirus Store

      Comment


        #4
        Surprisingly the script is called mailscript.pl :-)

        You need to open it in a plain text editor and find the line
        Code:
        @Response = ACTINIC::SendRichMail($::g_sSmtpServer, $::sMailTo, $::sMailSubject, $::sMailText, $::sMailHTML, $::sMailReturn);
        If you want to CC the mail to a different address then above this line insert a similar one replacing $::sMailTo to the CC address. E.g.
        Code:
        @Response = ACTINIC::SendRichMail($::g_sSmtpServer, 'myCCaddress@server.com', $::sMailSubject, $::sMailText, $::sMailHTML, $::sMailReturn);
        will CC all desktop mails to myCCaddress@server.com

        I havent tested it but I hope this works and helps :-).
        Zoltan
        Actinic Software
        www.actinic.co.uk

        Comment


          #5
          Originally posted by zmagyar View Post
          Surprisingly the script is called mailscript.pl :-)
          Cryptic naming huh? I was looking for carrierPigeon.pl, DRAT!

          Comment


            #6
            Originally posted by leehack View Post
            I was looking for carrierPigeon.pl, DRAT!
            Is there anyone expected other logic from Lee?
            Zoltan
            Actinic Software
            www.actinic.co.uk

            Comment


              #7
              Thanks! This looks good
              Last edited by mattc; 14-Sep-2008, 01:43 PM. Reason: stupid question!
              http://www.itwiz.co.uk

              http://www.AntiV.net - The Discount Antivirus Store

              Comment


                #8
                works brilliantly!

                Thanks so much.
                http://www.itwiz.co.uk

                http://www.AntiV.net - The Discount Antivirus Store

                Comment

                Working...
                X