Hi there!

Any coders know what syntax to input for the sSaveFolder folder location so that every time when creating a new rule through Rule Wizard it will prompt which local folder location you want to save to? Instead of creating multiple modules for to be save in different folders.

Public Sub SaveAttachmentsToDisk(MItem As Outlook.MailItem)
Dim oAttachment As Outlook.Attachment
Dim sSaveFolder As String
sSaveFolder = "C:\Users\Profile 1\Downloads\Testing"
For Each oAttachment In MItem.Attachments
oAttachment.SaveAsFile sSaveFolder & oAttachment.DisplayName
Next
End Sub

Thanks in advance!