Tagged Questions
0
votes
0answers
12 views
Outlook VBA Save Attachment Code failing
I have found code online that I want to use to save attachments from an email folder but it doesn't work. I'm not much of a programmer and this suits my needs it seems like. Would greatly appreciate ...
0
votes
0answers
14 views
i need to extract the body messages to excel spreadsheet and the body msg should be in columns
i found this code to work for me by checking new emails and extract the body msg. but it does not put the body msg into column. i need a way to search through the body msg and look for "first name:" ...
1
vote
0answers
14 views
Outlook VBA: Adding browse button to input box to get folder path
I was looking for any options on a browse for folder within Outlook VBA. Currently I have, from a previous search:
Dim save_to_folder As String
save_to_folder = InputBox("Search returned " & ...
0
votes
0answers
19 views
Copying an Excel table into an Outlook mail body via VBA
I want to set a procedure in order to copy an Excel table from Excel to a mail.body. I tried to write a Visual Basic code.
This is what I have written so far:
Sub SendAnEmailWithOutlook()
Dim ...
0
votes
0answers
20 views
Outlook Email Template VBA - with Input/Data Return
I am having some trouble with Outlook.
Our current System: In our current system, we have this setup in Excel where the user selects the State and City, and then it returns the items they want ...
0
votes
1answer
32 views
Visual Basic Compile Error - Invalid Character
I got a VB SCRIPT off the internet to create new mail alerts for secondary email accounts in Outlook(2010).
Now this is the first part of the code, and when running Outlook, it gives me the ...
1
vote
0answers
16 views
Rules and scripting -> Script not run immediately
I am assigning a category to a certain e-mail that then triggers a rule to run a script (in outlook). Everything works fine, I just cannot understand why the script does not run immediately after ...
0
votes
0answers
31 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
2answers
35 views
Is there a way to track mass emails confirming products received in outlook 2010
My company receives email confirmations of our products being received for inventory purposes. We received over 1000 a month, we have one employee (hate her job) that goes through each and every ...
-1
votes
0answers
9 views
VBA script to periodically check for outlook messages not received
I would like to automate Outlook to check every 8 hours to see if message from a specific sender has been received or saying another way, if the most recent message from that sender is more than 8 ...
-2
votes
1answer
38 views
I'm trying to bypass outlook alert using sendkeys, is this code correct? [closed]
Sub Mail_Workbook()
Dim wb As Workbook
Set wb = ActiveWorkbook
Application.Wait (Now + TimeValue("0:00:06"))
Application.SendKeys "{TAB}", "false"
Application.SendKeys "{TAB}", "false"
...
0
votes
1answer
34 views
Getting MS-Outlook embedded images and saving them within the file system using MS-Access VBA
I have a very special question concerning MS-Outlook and MS-Access VBA. I want to import the email data from outlook into a database (and the file system > attachments and embedded images). Using ...
1
vote
1answer
39 views
Outlook VBA to create new draft email for each Contact Group in contact list
Is there a VBA script that will
Create a draft email for each Contact Group
With the Contact Group's contacts in the "TO" field
With a uniform Subject
With a uniform Body
...and bonus if the body ...
0
votes
0answers
35 views
Outlook Forms: Importing / VLOOKUP Data from Excel?
I am a bit new to Outlook forms, but not to VBA overall - nor HTML/Web design of forms. However, my problem is finding a way to combine the two.
I am trying to design a form for users to fill out, ...
1
vote
1answer
53 views
Control already created Outlook message from excel VBA
longtime reader, first time messenger (not my first time making a bad joke though),
I would like to know if it is possible to gain control of an Outlook email message that has already been created. ...
2
votes
0answers
43 views
Outlook Get Other Emails in Email Thread
I am using VBA to format all outbound email messages in a certain way before sending. For example, I want to remove the first column from all tables which are embedded in the email. I use the ...
0
votes
3answers
74 views
Endless Loop - VBA Script That Runs when MailItem is Added to Sent Folder, then Creates Copy
I recently completed an outlook vba script that will scan the subject line of each mailitem added to the sent folder, looking for a project number in the subject. When detected, the script extracts ...
0
votes
1answer
52 views
No existing macros availble when Excel is opened from Outlook macro
I have a macro in Outlook, and I have it opening an Excel file that is saved on my desktop. Once the file is open, I would like to run a macro that I have written in excel, but none of my excel ...
1
vote
1answer
46 views
Object Required VBA Outlook
I'm not sure what it doesn't like about my code here, I'm experienced in .NET, but VBA is new to me. I know when called functions not to do myFunction('args') and do myFunction args instead, but I ...
0
votes
2answers
59 views
Using VBA in Outlook to gather statistics on received emails
At work we use a shared Outlook mailbox to receive emails from our users, and at the moment we have a rota of who's turn it is to monitor the mailbox and reply etc. Our working hours have been 7am-5pm ...
0
votes
1answer
48 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
1answer
48 views
Add Recurrence event on outlook 2010 from Excel
I have my friends date of birth in excel with name and dob column. I have to import the birthday events in my outlook calender with reminder of every year.
I tried with birth date as start date and ...
0
votes
1answer
41 views
outlook shared calendar recurring item between the date specified range
Following is my code where i can print the number of recurring items in the shared calendar folder. Now i want to take the date range from the user say SDate and EDate and want to check for the ...
0
votes
1answer
33 views
Oulook script - How to find the root folder of a favorite folder
I am trying to find a way to access the associated public folder of a favorite folder. The goal is to move mails automatically to public folders. In the case where this folder has been defined as ...
0
votes
0answers
20 views
Outlook vbscript event management
I don't fully seem to understand Outlook vbscript events.
I've added this method.
Sub Item_CustomPropertyChange(ByVal Tier)
...
End Sub
That listen to all custom property changes. The problem ...
1
vote
1answer
93 views
How can I supress the Outlook warning while sending mail using macro in excel
I am trying to send an email using macro in excel.
But when I run this code my mail client i.e. MS Outlook shows a pop up warning similar to
Someone is tying to send mail on behalf of you. select ...
2
votes
0answers
104 views
VBA retrieve HTMLBody from Outlook mail
First I create an email via Outlook:
Sub CreateHTMLMail()
'Creates a new e-mail item and modifies its properties.
Dim olApp As Outlook.Application
Dim objMail As Outlook.MailItem
Set olApp = ...
0
votes
1answer
77 views
how to attach templates and add-ins to outlook .msg files?
I have hundreds of different outlook .msg templates with similar bookmarks. I want to fill out these bookmarks so they get their data from a database using vba code.
Now, like in word documents, this ...
3
votes
1answer
84 views
VBA Edit SharePoint Discussion Post (PostItem) and Update Web Discussion
I have a SharePoint discussion board sycned to Outlook 2010.
I want to be able to programmatically modify my posts within a SharePoint Discussion Board within Outlook VBA and have these changes ...
0
votes
0answers
11 views
Adjusting Outlook forwarding options with shortcut
I recently set up a free SMS Service account for Outlook 2010 intending to use it to forward my email to my mobile. However, as it supports only 10 free messages per day, I only want the email ...
0
votes
0answers
35 views
Unified Inbox in Microsoft Outlook 2010
I have two IMAP accounts and one POP account configured in MS Outlook 2010. Extensive Google research indicates Outlook does not support a truly unified inbox, where these three accounts would be ...
0
votes
0answers
99 views
Application-Defined or Object-Defined Error Using Access
I'm trying to send automated emails through outlook from Access, but I've run into an issue where if a user does not have their email open already, I will get the Application-Defined or Object-Defined ...
0
votes
1answer
67 views
How do I save a single email's body to a .csv file as it is received?
I am completely new to VBA and apologize if this question has already been asked and I am just too much of a noob to find the answer using the correct search terms. What I need is to be able to point ...
0
votes
1answer
157 views
VBA - Outlook: Send message from one of multiple mailboxes
Here is my problem:
- my client has multiple accounts in Outlook 2010
- each account has multiple mailboxes
Example:
- Account A: email@address.com
- under neath of that account he has the following ...
1
vote
1answer
132 views
VBA Outlook - Get email addresses from attached .msg files
I would like to have some code that helps me to get the email address of the sender of an attached .msg file.
I have an email with around 10 emails attached. I need to copy the sender address from ...
0
votes
1answer
152 views
vba outlook, move mailItem to specif folder
Does someone help me in this small script I am triyng to implement in vba?
What appends is that the loop randomly stops and I can not to move all the mail in "archivio" folder.
Private Sub ...
0
votes
0answers
29 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 ...
0
votes
0answers
210 views
Counting Emails in outlook 2010 in specific folder
Ok, I'm not all that familiar with VBA coding so I was hoping someone would be feeling helpful and see why the code (got code from another ticket on this site), which seems to work but generates an ...
1
vote
2answers
88 views
Detect end of new message in email conversation body
When a message gets replied or forwared the previous thread gets appended on your new mail by placing i.e. ----Original Message---- in front of it.
Outlook does the same with tekst messages but with ...
1
vote
1answer
262 views
Populating a listbox in Outlook from an Excel Range - getting a cell's hyperlink
I'm trying to populate a multicolumn listbox in Outlook VBA with data from an Excel range.
I've managed to get it working so far using the code:
Private Sub CommandButton1_Click()
'Late binding. ...
0
votes
1answer
55 views
Scan through email and change field names
I currently have:
Sub Confirmation()
myMessage = "You recently made a request on the IT website, the details of your request can be seen below:" & vbCr & vbCr & "Thank you, " & ...
1
vote
1answer
81 views
Outlook 2007 Multi Select folders
First Time Question :D.
I have been writing a Marco for Outlook 2007 to let the user pick a folder and then with that folder move all the mail items out of it and move it to a personal Arhcive ...
2
votes
1answer
150 views
Outlook VBA Script on incoming messages
I have tried to make a script to pick up emails as they come in, reformat them and then forward on to the email in the body but I cannot work out how to read the email body. I currently have:
Sub ...
0
votes
0answers
22 views
task scheduled on Task schedular is not run properly
I schedule task from cmd using below command,
schtasks.exe /Create /TN "SendEmail" /TR "C:\test1.vbs" /RU System /SC
HOURLY /MO 1 /ST 16:00:00
It scheduled successfully. But when it is running ...
0
votes
0answers
54 views
How to programmatically set the position of an inline attachment in Outlook 2007?
I need to create Outlook emails programmatically and also attach several files in certain positions within the body text. Apart from the position, everything is working fine.
It's possible to specify ...
0
votes
2answers
244 views
get manager info from Outlook Address List vba
I'm using the below code to open the Global Address List window to select a contact in the list.
For the contact that is selected, I'd like to get the Manager name as well. However, I can't seem to ...
0
votes
0answers
109 views
Accessing “From:” from VBA in Outlook 2010
I have on account "me@domain.com" configured in Outlook 2010. I compose a message and open the drop-down on "From:". I select "Other email address..." and type in "bingo@bongo.com". I get a pop-up ...
0
votes
1answer
67 views
automating a mundane task
I have a simple task that i need to automate.
I get a email in a very specific format from another application based on a trigger.
What i want is that out look "reads" the data in that email and ...
0
votes
2answers
62 views
Working with current open email
I would like to get the active opened MailItem (whether it's a new mail or a received mail). I need to add some content to that mail when the user runs my macro. I'm using Outlook 2003 and VBA.
I ...
-1
votes
2answers
132 views
Appointment Sorts By Create Date
Here is my code, i have not been able to get this to sort by start date in email, only by create date.
Public Sub GetListOfAppointmentsUsingPropertyAccessorWeekend()
On Error GoTo On_Error
...



