Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • Author
    Replies
  • in reply to: If-then-else statement , if mail is send local #6447
    Gem.Rhenen
    Participant

      The script is working perfectly, but sometimes, with some specific users, we get the DISCLAIMER in the middle of the text.
      In spite of the fact that we use the line “Call GroupWise.PosToEndOfText”.

      How can we force the DISCLAIMER to be definitely at the bottom of our email?

      in reply to: On Close Event #6515
      Gem.Rhenen
      Participant

        any reaction yet?

        in reply to: Attach Original Message #6433
        Gem.Rhenen
        Participant

          If I use the same script “on send”, the composed message is to be forwarded to “ARCHIVE@test.com”. Unfortunatly this is not working as of now. Please provide sample script for this, or a mod. on the existing script.

          in reply to: Attach Original Message #6430
          Gem.Rhenen
          Participant

            It works fine now, thanks for your support. You can look forward to an order for 100 more clients.

            in reply to: Tengine.BuildRecordedScript #6424
            Gem.Rhenen
            Participant

              Only ScriptRecorder.dll exists on both machines

              in reply to: Attach Original Message #6428
              Gem.Rhenen
              Participant

                ‘——————————————————————————-
                ‘ Insert your comments here
                ‘——————————————————————————-

                Sub Main(Client, GWEvent)
                Dim objDraft
                Dim objEmail
                Dim objRecipient
                Dim Archief

                ‘ Maak een nieuw bericht
                Set objDraft = GoupWise.Account.MailBox.Messages.Add(4)

                ‘ Voeg een ontvanger in
                Archief = “test@test.com
                objRecipient = objDraft.Recipients.Add(Archief,,0)

                ‘ Voeg parameters toe
                Set Msg = Client.ClientState.CommandMessage

                objDraft.Subject = “Archivering gewenst”
                objDraft.BodyText.PlainText = “Graag dit bericht archiveren.”

                ‘ call objDraft.Attachments.Add(Msg, “Test”)

                ‘ Verstuur het bericht dmv de verzend methode
                Set objEmail = objDraft.Send

                ‘ Verzend bevestiging
                Call MsgBox(“Dank U.”, 64, “Bericht verzonden.”)
                End Sub

                =============================================
                In this case the message is generated, and send to the recipient, as soon as I enable the attachment line (call objDraft.Attachments.Add(Msg, “Test”)) the message is not send, but comes back into my own mailbox as a draft without recipient. Can you please provide me with a working script to attach the original message and send it to a single recipient (in this case test@test.com).

                An other problem I have is that: when I do not have a message selected it fails on the following line:

                Set Msg = Client.ClientState.CommandMessage

                How can I check if there is a message selected?

                Thanks already for your help so far.

                in reply to: Change the HeadLine in a messagebox #6434
                Gem.Rhenen
                Participant

                  Const CAPTION = “Requested Message”
                  Call Msgbox (“Done”, 64, CAPTION)

                  in reply to: Tengine.BuildRecordedScript #6423
                  Gem.Rhenen
                  Participant

                    Then body text was: “An unknown error has occured”. I tried this on 2 PC’s (windows2000prof and windowsXPprof). Both give the same error.

                    Thanks

                  Viewing 8 replies - 1 through 8 (of 8 total)