Tagged Questions
0
votes
0answers
22 views
VBA on incoming email in Outlook and appending to subject line
Hopefully this is a fairly easy one, here's what I'm trying to do:
I work for an exam marking board, and we have examiners who email us directly with different queries through the day. We are ...
0
votes
1answer
39 views
Outlook 2003 toolbar customization: add/edit button list
I have macros in my VbaProject.OTM file. A new toolbar is created when Outlook is launched to allow users to easily run the macros.
(sorry about the interface being in French ;-))
So far, it works ...
0
votes
0answers
23 views
Save email as text before sending
I use a VBA macro to send quotations to our customers. It gets the information from a HTML generated from excel and also attached a copy of this text file and works fine.
However, sometimes our sales ...
0
votes
0answers
28 views
exporting email content into excess using a Macro [closed]
I have never used a macro before but I will be receiving e-mails that I need to have placed into a Excel Spreadsheet automatically. The e-mails will be going directly into a folder named "Softball" in ...
1
vote
0answers
21 views
Can you run an outlook vb module without being logged into the client
I have a VB module in a non-person mailfile. I need it to run continuously without anyone being logged into that outlook account. It just detaches excel attachments and will place them on a network ...
0
votes
0answers
104 views
Outlook Macro to move email when closing viewer
I have a bit of code pieced together here that does the following actions.
If email is marked as read it moves it to a subfolder under inbox.
The subfolder is the Sender name. If that folder does ...
1
vote
0answers
36 views
Is This Possible through an Outlook Addin
I need to create an Outlook(2010) Addin which does the following things:
-If an email is Dragged and dropped into Windows explorer (not within Outlook Folders) it
Changes the File Name to the ...
0
votes
2answers
960 views
Outlook VBA macro to save attachments to a folder and rename them
I'll start by saying I'm very new to VBA and I only ever tinker with it when I need to. I've tried searching the site for an answer to my question but it still eludes me.
I'm trying to get a VBA ...
1
vote
0answers
209 views
Macro to copy data from multiple .msg files and paste into single .xlsm file
Required an outlook macro or an excel macro to automate the following process.
More than 30 (30 to 70) outlook mails are stored in “C:\Test” folder in .msg format.
These mails contain information ...
1
vote
1answer
449 views
Outlook rule fires macro before it moves mail into the folder that the macro looks for
I initially had this code running to save attachments from emails that come in. My code would loop through the entire folder and for any attachments that were there, it would save the attachment and ...
0
votes
1answer
176 views
Enable macros in Office 2007 applications from batch file?
I am using a batch file to launch Outlook and Excel 2007 as follows:
start "" "C:\Program Files\Microsoft Office\Office12\OUTLOOK.EXE"
start "" "C:\Program Files\Microsoft Office\Office12\EXCEL.EXE" ...
0
votes
1answer
80 views
Setting a constant from a variable value
I would like to set the path of my database as a constant. The problem is that the path is stored in a INI file and the variable is set when Outlook is launched. VBA won't compile if the constant ...
3
votes
1answer
120 views
How to toggle a customized button in the New Mail Message Ribbon within Outlook 2010
I have created a new customized button that sets the Sensitivity to Confidential (macro code below).
I would like the button to be able to do the following:
Toggle the setting each time the button ...
0
votes
1answer
72 views
Outlook 2007 open an email after sending
I am looking for a way to have Outlook 2007 open an email after I send it (i.e. the actual sent email, not the draft).
I already have a macro setup to open the categories option after sending an ...
1
vote
3answers
479 views
VBScript from Access macro to read emails from MS Outlook
I had developed a small macro in Access that connects to the current instance of MS Outlook running, retrieves some specific type of emails, opens them, retrieves the attachment and inserts into an ...
1
vote
1answer
852 views
VBA Exel Macro Create an Outlook Calendar event
Can you run a macro from excel that can interact with Outlook and create and event on the calendar?
0
votes
0answers
85 views
Counting emails per time frame
I have problem with sorting count by columns can someone help me? I counting emails by time frame. and put to each column number how many items was on this period of time. Problem are then I try to ...
0
votes
1answer
186 views
Outlook macro runs through 250 iterations before failing with error
Description:
I have an Outlook macro that loops through selected emails in a folder and writes down some info to a .csv file. It works perfectly up until 250 before failing. Here is some of the code:
...
1
vote
2answers
695 views
Dismiss outlook reminder in vba
I am having No luck dismissing an outlook alert programmatically
Here's my code of attempting to dismiss it before it display
Private Sub Application_Reminder(ByVal Item As Object)
Dim objRem As ...
2
votes
0answers
151 views
Displaying Outlook template using Macro
Basically I have a Outlook template which I need to use when I reply to a message. I can get it to successfully show by itself but when I add the original message to display under the template the ...
2
votes
1answer
527 views
Collect outlook email responses as tasks and populate in excel spreadsheet
would appreciate any help / suggestions
I'm very new to VBA & macros. I work in administration and I have a lot of interrelated tasks and I would like to speed up the process a bit.
I receive ...
0
votes
0answers
94 views
How to prevent Outlook from sending an email if recipients are across domains?
We had a problem wherein an email intended for one client inadvertently went to another - due to auto-complete feature in Outlook. Is there a mechanism wherein we can stop a email from being sent if ...
1
vote
2answers
471 views
How do I set a macro to launch every time an email arrives in a certain subfolder in outlook 2007?
I have a macro to export relevant field of emails in a subfolder but I need it to automatically run every time I receive a new email. In fact I only want the subject line exported, is there a script ...
0
votes
0answers
612 views
Outlook VBA attachments to file
Here's what I'm trying to do. I've got code that extracts e-mail attachments from Outlook and saves them to a local folder. I'm having trouble tweaking the code so that it gets the attachments from ...
0
votes
0answers
115 views
How to create outlook appointments where the information is in an email? (macro) [closed]
This is the situation...
An external program send to my outlook account emails with the next structure
body of the email:
id;name_of_process;9/3/2012;16:00;duration;
I need to create a new ...
2
votes
1answer
2k views
Outlook VBA script changes message font size
I have a script which alters the sensitivity of a message, it does work- but what happens
is that the font size changes. Is something wrong with the script?
Public Sub MakeThisConfidential()
...
0
votes
0answers
183 views
Macro to share calendar (send .ics calendar file) by mail
I have been trying to gather resources and information as to how to access the outlook 2007 and 2010 "share calendar" menu feature.
The option allows one to send a .ics file made from the entire ...
0
votes
0answers
558 views
outlook reply action
how to create with VBA on outlook macro then you get email and want to click reply, All Reply, Forward in the body automatically add additional text?
Public WithEvents myItem As MailItem
Sub ...
3
votes
1answer
1k views
Outlook - insert text based on recipient
I need to have a macro automatically insert some text into an outgoing email depending on the recipient. I found some code in an answer to another question (credit to 76Mel) that looks promising. It ...
4
votes
2answers
5k views
How do I trigger a macro to run after a new mail is received in Outlook?
I'm writing a macro that creates tickets on a database based on alerts received from a Nagios server as an email. However, I cannot let the macro run in an infinite loop while checking for mails ...
3
votes
1answer
532 views
VBA Office 2010 Outlook issues
I have just gotten an upgrade from our IT guy on to Office 2010 where I work so that I could check the functonality of VBA scripts I had written in office. The only one's ive come across so far are in ...
0
votes
0answers
723 views
Is there a conversation cleanup macro for Outlook 2007?
I have been trying to find a macro for Outlook 2007 that will delete older emails within a conversation. I read that Outlook 2010 has a conversation clean-up tool, and I think I need something ...
0
votes
1answer
2k views
Add contacts to Outlook Distribution List
I have 1000+ contacts each with a selection of common job titles. I'd like to programmatically add each job title group (e.g. all the contacts with the job title 'Managing Director') into a ...
2
votes
2answers
1k views
Outlook auto forward set replyto email to orginal sender rather than forwarder
and I have created a Macro to forward emails to a specific account. everything works great except that all emails that are being forwarded has the forwarders emails address, how can I keep the ...
2
votes
1answer
2k views
Saving .XLSX Attachments from Outlook 2010 w/ VBA
I've got a general question which I think is probably above my expertise, but I just wanted to know if what I'm thinking about doing is even possible.
I've been using VBA in MS Access for the past ...
0
votes
1answer
3k views
How to change reply address in outlook mail using Outlook Macros
I have an excel sheet with three columns totally in that Employee Name, Email ID and DOB.
I wrote a macro which matches birthday date's of the employees with today date and that will send an outlook ...
2
votes
2answers
2k views
Schedule Outlook 2003 Macro
Edited to (hopefully) clarify the problem.
I have an Outlook 2003 macro written in VB. I didn't write it, I'm not sure exactly what it does, and I don't really want to modify it if I can get away ...
2
votes
1answer
306 views
How to create a Macro in Excel which will read a username from a cell in Excel and then send an email to that user?
I require some help in creating a Macro in Excel which will read a row of username from cells in Excel and then send an email to all those users by searching for the users email address in the outlook ...
1
vote
1answer
2k views
how to schedule a macro automatically in outlook?
i want to know how to schedule automatically a macro for outlook.
I 've created one macro which extract the attached file from an email and store it in a folder.
This macro is working very well when i ...
1
vote
1answer
3k views
Update excel sheet based on outlook mail [closed]
My objective is to update an excel sheet, whenever I am getting mails with a particular subject (I set up a rule for moving relevant mails to a folder).
I saw a similar post in this site, but the ...
2
votes
1answer
487 views
Adding hidden bcc for outlook with c#
I'm using POP for mails and I want to inform one of my company mails when a message is sent by one of the users. And I want it hidden so they cannot delete it. I see there are solutions bun not free ...
1
vote
2answers
3k views
Removing duplicate mails from outlook
I had a mail box which is set to receive from lots of similiar mails at same time. So is there any way i can keep only one copy and delete the further mails automatically before reaching my inbox so ...
3
votes
1answer
753 views
Visual Basic Macro in Outlook 2010, saving to a specific folder?
I am working with converting people from an older email client to Outlook 2010. Trying to convert the contacts over efficiently can be a pain, so we have some code that does the grunt work for us. The ...
0
votes
2answers
872 views
VB outlook macro returns compile error
I have the macro below, everything I read states it should work, but when I go to send an email it returns a "User defined type not defined", right at the line Dim objRE As New RegExp
However it is ...
2
votes
1answer
266 views
vb outlook macro check domain
trying to add a check to my macro that checks the domain of the recipients email (the 'To:')
Dim olTo As String
If InStr(olTo, "example.com") Then
Exit Sub
If the recipient email address matches ...
2
votes
2answers
651 views
Move Outlook messages if content contains a number greater than threshold
I get thousands of Nagios alerts in my inbox daily, but many of them are actually trivial (even though Nagios reports them as critical). I want to check whether the text of these alerts contains ...
1
vote
1answer
416 views
Microsoft Outlook Macro
I have made an outlook macro to save emails to a specified folder on the hard drive . Now my question is how can i deploy it. If i have to use it on some other machine do i need to do follow the same ...
0
votes
2answers
1k views
Detecting format of body in Outlook 2007 in VB
I am trying to detect the format of the body of an email message in outlook 2007 using a macro.
if body is plain text
convert to HTML
perform the operation
Display as HTML with Font ...
2
votes
2answers
1k views
My outlook VBA code drops the odd email
I put together some VBA code for Outlook 2007 which has been working predominantly fine.
Its basically designed to check incoming messages and store the subject, body etc into a database and the ...
1
vote
1answer
609 views
Invoke a macro in Outlook from a button in email message
How to invoke a macro in Outlook from a button in email message?
