Search results

  1. soadfan

    Outlook won't send e-mail when offline

    saveFolder = "D:\Desktop\TMP\" RSubject = Replace(itm.Subject, ":", "_") RSubject = Replace(RSubject, ",", "_") RSubject = Replace(RSubject, "/", "_") RSubject = Replace(RSubject, "\", "_") MkDir saveFolder I meant windows directory, not Outlook. If i remember correctly it was such a pain in...
  2. soadfan

    Outlook won't send e-mail when offline

    Yep no errors. Actually it worked few times. But other macros are stopping because of an error (like trying to create folder that already exist). I'm starting to think that may be the problem is in the VBA handler. This is company laptop, part of domain with a lot of restrictions
  3. soadfan

    Outlook won't send e-mail when offline

    Nope. The last one is checked "Break on Unhandled Errors". Should i check the first one? P.S. About the new line, try shift + enter
  4. soadfan

    Outlook won't send e-mail when offline

    Nope. It doesn't work. Strange thing. Macros are enabled in security settings
  5. soadfan

    Outlook won't send e-mail when offline

    Strange. Now it doesn't fire at application startup. If i run it from VBA editor, works fine even offline.
  6. soadfan

    Outlook won't send e-mail when offline

    Yes i am. And it's set to keep all mail.
  7. soadfan

    Outlook won't send e-mail when offline

    Nope. It doesn't put it in the outbox at all.
  8. soadfan

    Outlook won't send e-mail when offline

    I have this code, which is working fine, except if you don't have internet connection. The problem is that Outlook doesn't send it when internet connection is back. It doesn't appear in the Outbox folder either So is there a way to send it automatically later? Private Sub...
  9. soadfan

    Outlook creating a folder named: "Unwanted"

    Probably Samsung's. First thing i did when bought my GT-i9505 (Galaxy S4) was to root it and install some custom ROM (cyanogen/lineage). All bloatware was gone, but also preinstalled apps, which forced me to use 3rd parties apps. I'm using aquamail as mail app, for example, and it's better then...
  10. soadfan

    assign category (VBA)

    yep:
  11. soadfan

    assign category (VBA)

    its on top and i disabled stop disabling more rules on all rules. And it was single mail when failed
  12. soadfan

    assign category (VBA)

    I did notice that it won't work for some emails (with attachments mostly) when they arrive. But after that if i run rule manually it assign category, any ideas?
  13. soadfan

    Outlook creating a folder named: "Unwanted"

    Is this folder appear on all devices or only on desktop PC?
  14. soadfan

    assign category (VBA)

    After quick research i came up with this (im not sure it's most elegant/optimized way): Public Sub DateBasedCategories(itm As Outlook.MailItem) Dim dateFormat dateFormat = Format(itm.ReceivedTime, "dd") If dateFormat Mod 2 = 1 Then itm.Categories = "date.odd" itm.Save Else itm.Categories =...
  15. soadfan

    assign category (VBA)

    How can i assign category on incoming emails based on received date? For example odd dates> blue, even > red
  16. soadfan

    Outlook rules look up display name only

    I tried matching sender's address but it doesn't check the email address neither. If i try same but with header will trigger (i think) even when the matched string exist in recipients. Also header contains senders address like "From: First Last <somethink.odd@domain>" so i have to figure it out...
  17. soadfan

    Recent Update Did not Fix Search Problems

    As Diane said, you can obtain it from windows update catalog: Microsoft Update Catalog
  18. soadfan

    Outlook rules look up display name only

    Hello, i'm running Outlook 2013 (v 15.0.49....) I have a set up a bunch of rules which was working fine. Recently the company i'm working in decided to migrate from "local" domain to the new "global" one. Also updated mail server from POP3 to Microsoft exchange. Most of the email accounts are...
  19. soadfan

    Enable all rules from toolbar button?

    Well it fails too from time to time. So...can you help with VBA which enable all rules from a toolbar button? I have 25+ rules and it's really annoying to re-enable disabled upon fail. Best regards, Peter
  20. soadfan

    Enable all rules from toolbar button?

    Thanks, i'll try this
Back
Top