Recent content by Calvin

  1. C

    Creating custom view with VBA

    In the past I've done this by copying the view in an empty PST. Then I've attached the PST to each user to copy the views. Not so fast, but better than recreate the views every time. I don't know if it's your case, I hope it helps. If you are dealing with Exchange mailbox maybe exfolders could...
  2. C

    Change From address while sending a new mail

    Hi Diane, hi Niton. thanks for your help. Your suggestion were decisive for me. I think the main part of the script is completed. I have only to do some in-depth test (mail with big attachment, different outlook version, mailbox not attached and so on) and add some code to manage errors (any...
  3. C

    Change From address while sending a new mail

    Hi Diane, I've tried to add this code: Sub ChangeSentItem() Dim objInspector As Outlook.Inspector Dim objItem As Outlook.MailItem Set objInspector = Application.ActiveInspector Set objItem = objInspector.CurrentItem objItem.SentOnBehalfOfName = "snp02" objItem.Subject =...
  4. C

    Change From address while sending a new mail

    Hi all, its the first time I write on this forum. I hope someone of you could help me to solve a problem. I would like to change the from address and add some tag to subject for each new email I send. While adding tag to subject it would be very simple, isn't so for the From address field. I've...
  5. C

    VBA and windows updates

    Hi All, I've written a VBA macro to manage emails with BCC recipients... It seems to works well, but before to use it, a question arises... What about Windows Updates? Is possible that an Outlook or a security update could stop this VBA from working? Many thanks. Calvin
Back
Top