Recent content by fourthgen

  1. F

    VB Script, remove text from subject line when forwarding

    That is perfect! Thank you
  2. F

    VBScript to add pre defined text

    Sorry for the delay in responding. Unfortunately, I do not believe that templates would work, as sometimes they would be sending the details in response to an email, rather than creating a new email each time.
  3. F

    VB Script, remove text from subject line when forwarding

    Apologise, I have only just had the time to test this on the quarantine mailbox (was testing on my own mailbox before) .. There is a problem, as the emails do not get forwarded to the quarantine, they get redirected (so it appears as the intended recipient was quarantine@) as this is the case...
  4. F

    Outlook 2010 unable to delete emails from scanner

    Hi, Using Outlook 2010 connected with Exchange 2010. We have a Multi-functional printer that also scans to each individuals mailbox. There are approximately 20 users that connect and use this scanning feature without any problems. However, there are 2 users that, once they have recieved...
  5. F

    VB Script, remove text from subject line when forwarding

    Ahh many thanks for that. I have another client that is similar, but they do not want to manually type the recipient each time. So what wiould i need to remove to get it to work that way also?
  6. F

    VB Script, remove text from subject line when forwarding

    My apologise, I mis read the previous post. I have now got: Sub ChangeSubjectThenForward() Dim oItem As Outlook.MailItem Dim strSendto, strSubject As String Dim myForward As MailItem ' Set reference to VB Script library ' Microsoft VBScript Regular Expressions 5.5 Dim...
  7. F

    VB Script, remove text from subject line when forwarding

    Thank you, I am trying that script: Sub ChangeSubjectThenForward() Set M2 = Reg2.Execute(oItem.Body) For Each M In M2 strSubject = Trim(M.SubMatches(1)) Next End If If Left(LCase(strSubject), 8) = "****spam" Then strSubject = Right(strSubject, Len(strSubject) - 12)...
  8. F

    VB Script, remove text from subject line when forwarding

    Sorry, im not the best with VB Script. So if i use the link you supplied Sub ChangeSubjectThenForward() Dim oItem As Outlook.MailItem Dim strSendto, strSubject As String Dim myForward As MailItem ' Set reference to VB Script library ' Microsoft VBScript Regular Expressions...
  9. F

    VB Script, remove text from subject line when forwarding

    If it is possible then a special forward button would be perfect! Well at the moment they manually type in the recipients address, but if it is possible to pick it up from the header block, that would be extremely useful. And yes, it is in the message in the normal header block as in your...
  10. F

    VB Script, remove text from subject line when forwarding

    Thank you for the response. Currently, the Quarantine mailbox is open in someones profile, along with their own mailbox. What they do is, they go through the quarantine every so often to check for legitimate emails and the forward them out, doing this, they should be removing the SPAM parts...
  11. F

    VBScript to add pre defined text

    It is for a client of mine. They have to send their bank details to recieve payments, so they would like a quick and simple way of being able to do so.
  12. F

    VBScript to add pre defined text

    Hi, I am wondering how to go about creating a macro in Outlook to insert some pre-defined text. At the moment we copy and paste the details, but it (for some reason) effects all the formatting etc.. Is this easy to do? Thanks in advance
  13. F

    VB Script, remove text from subject line when forwarding

    Hi, We have a SPAM filter in place and if it detects what it believes to be 'SPAM' it redirects the email to a quarantine mailbox. This is routinely checked and any genuine emails get forwarded out. However, when it redirects to the quarantine mailbox, it adds either ****SPAM**** ...
  14. F

    VB Script to Delete all contacts under local contacts folder

    Thank you for your response, I have tried the script that you kindly supplied, however, I am getting an error on the IngCount = myItems.count Line. It sems to not recognise the .count command? Do you have any further ideas? Regards
  15. F

    VBScript copy contacts and remove duplicates

    Hi, We have this phone system in place that links into our local contacts in Outlook. So what I am trying to do is create a VBscript to run automatically on startup, to copy all the contacts that are stored in the public folders to the local contacts and remove any duplicates, according to...
Back
Top