Consulting

Results 1 to 2 of 2

Thread: Bridge between Outlook and OSticket

  1. #1
    VBAX Newbie
    Joined
    Sep 2016
    Posts
    1
    Location

    Bridge between Outlook and OSticket

    Hi,

    I just installed an OSticket server on my company's intranet - to make sure the followup from cases is done well. We have 3 e-mailadresses, on Office 365 with Office 2016 version and everyone uses these 3 addresses in our Outlook instances - no personal e-mailadresses in the company. I tried to make a macro with a button in the ribbon that forwards the current e-mail to an address OSticket fetches, but OSticket (ofcourse) replies to that address when we answer a ticket, and gets in a loop.
    I would like to add a 'reply-to' address to it and test if it works, can somebody help me with that please?

    A macro for using the OSticket API would be the perfect answer to this, but that's way out of my knowledge.

    The code I used is in attachment.

    Any help would be greatly appreciated!

    Kind regards,

    Stef


    Sub-ForwardItem.docx

  2. #2
    The following may work as it sets an alternative reply address:
    Set oMail = oOldMail.Forward
    
            Do While oMail.ReplyRecipients.Count > 0
                oMail.ReplyRecipients.Remove 1
            Loop
            oMail.ReplyRecipients.Add "someone@somewhere.com"
    Graham Mayor - MS MVP (Word) 2002-2019
    Visit my web site for more programming tips and ready made processes
    http://www.gmayor.com

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •