Script needed for replying to email address in body of receiving email

Status
Not open for further replies.

FRS

Member
Outlook version
Outlook 2010 32 bit
Email Account
POP3
Basically, I need to reply to incoming emails. - The reply email address is in the body of the incoming email.

The reply email address would change for each email...... ( it will always be in the same location )

What I want to achieve is to automatically retrieve the email address from each email,,, and then reply with a pre-made email ( in drafts ) or setup an automatic template.

This is a sample of an incoming email. followed by the sample of the responding email.

In short I receive a notice from paypal when goods are purchased from my site.... and I need to send a conformation of received payment... and let them know that I have started production.

========================================================================================================================================

pixel.gif

You received a paymentTransaction ID: 03K25099Y3093144G

Dear Fast Rubber Stamps,

Thanks for using PayPal. To see all the transaction details, log in to your PayPal account.

See your invoice

It may take a few moments for this transaction to appear in your account.

Customer

Christopher Dale

scripttest@fastrubberstamps.com.au
Note from customer

None

Christopher Sale

PO Box 315 Rave

Grave, Victoria 3160

Australia

DescriptionUnit priceQtyAmount
Rubber Stamp Order$59.801.000$59.80

Subtotal$59.80
Shipping and handling$0.00
GST 10%$5.44
Total$59.80 AUD

Invoice ID 566

Kind regards,

PayPal

Help Centre | Resolution Centre | Safety Advice

Copyright © 1999-2013 PayPal Australia Pty Limited ABN 93 111 195 389 (AFSL 304962). All rights reserved.

PayPal Email ID

=========================================================================================================================

Thank you for your payment.

Your Fast Rubber Stamp order has now been processed and advanced to production.

Manufacture of your order will now commence, and will be completed ASAP.

You should expect delivery of your finished order within the next couple of days.

Thank you again for your order.

Production Dept

FRS

============================================================================================

Thank you in advance, for taking the time to review my requirements

FRS
 
I'll delete the other post since they look to be duplicates - our best antispam filter is "new members + links = moderation" so this post got kicked into automatic moderation.

I have a macro or two that can do this -

http://www.slipstick.com/outlook/rules/send-a-new-message-when-a-message-arrives/

http://www.slipstick.com/developer/run-a-script-rule-autoreply-using-a-template/

They both work with rules to autoreply. To convert them to manual, change the sub name from this format:

Sub SendNew(Item As Outlook.MailItem)

to this:

Sub SendNew1()

Dim Item As Outlook.MailItem

Set Item = Application.ActiveExplorer.Selection.Item(1)
 
Thank you Dianne.

I managed to get this working. ( I've never done coding or scripting before ) But I have a Masters in "Copy & Paste" ;)

Only problem I have is: That it is reply to the senders email address ( which is PayPal )

I need it to retrieve the email address from the body of the incoming email, and forward it to that

The email address will be different every time, but the incoming email is a generic PayPal template.

I can see where the problem is in the code..... but I have no idea how to fix it.

Here's what I have:

==========================================================================================

Sub SendNew(Item As Outlook.MailItem)

Dim objMsg As MailItem

Set objMsg = Application.CreateItemFromTemplate("C:\Documents and Settings\user\Application Data\Microsoft\Templates\FastRubberStampsProductionNotice.oft")

objMsg.Recipients.Add Item.SenderEmailAddress

' Copy the original message subject

objMsg.Subject = "PAYMENT RECEIVED - " & Item.Subject

objMsg.Send

End Sub

===================================================================================================================

Thanks in advance Geoff
 
not a problem - you need to use little more code, like what is used in the sample here

use this as the pattern for an email address
With Reg1
.Pattern = "(([\w-\.]*\@[\w-\.]*)\s*)"
.IgnoreCase = True
.Global = False
End With

and so you don't need to set a reference to the scripting library, you could use these lines to replace the similar lines in the other:
Dim Reg1 As Object
Dim M1 As Object
Dim M As Object

Set Reg1 = CreateObject("VBScript.RegExp")

something like this - i didn't test it, so it might not be 100% correct.

Code:
Sub SendNew(Item As Outlook.MailItem)
  Dim Reg1 As Object
   Dim M1 As Object
   Dim M As Object
   Dim strAddress As String 
 
Set Reg1 = CreateObject("VBScript.RegExp")
   With Reg1
      .Pattern = "(([\w-\.]*\@[\w-\.]*)\s*)"
      .IgnoreCase = True
      .Global = False
   End With 
 
If Reg1.Test(Item.Body) Then
  
       Set M1 = Reg1.Execute(Item.Body)
       For Each M In M1
          strAddress = M.SubMatches(1)
       Next
   End If
Dim objMsg As MailItem
Set objMsg = Application.CreateItemFromTemplate("C:\Documents and Settings\user\Application Data\Microsoft\Templates\FastRubberStampsProductio nNotice.oft")
objMsg.Recipients.Add strAddress
' Copy the original message subject
objMsg.Subject = "PAYMENT RECEIVED - " & Item.Subject 
 
' use for testing
objMsg.display
' objMsg.Send
End Sub
 
Yep.... that works.....

Thank you very much.

On to the next project.
 
This was working yesterday ( with my test emails )

I did a reboot..... and now it won't work.

I have the script invoked within a rule in outlook.... all the other features within the same rule work..... email in... move to another folder... sound a wav file... show an alert... but then it doesnt show or forward the email.

I deleted the script and replaced it to no avail.

any suggestions?

does it have anything to do with the income email..... the email address contained within is a hyperlink as in... mailto:emailaddress@here,com ?????

cheers

Geoff
 
What is your macro security set to? That is the usual cause of "it worked until i rebooted".
 
Macro Settings = Disable all macros without notifications
 
Set it to enable all for testing, then sign it using selfcert and change the setting to allow signed macros. Instructions are at how to use vba editor
 
I still can't get it yo work... maybe something is wrong with my code

=================================================
Sub SendNew(Item As Outlook.MailItem)
Dim Reg1 As Object
Dim M1 As Object
Dim M As Object
Dim strAddress As String

Set Reg1 = CreateObject("VBScript.RegExp")
With Reg1
.Pattern = "(([\w-\.]*\@[\w-\.]*)\s*)"
.IgnoreCase = True
.Global = False
End With

If Reg1.Test(Item.Body) Then

Set M1 = Reg1.Execute(Item.Body)
For Each M In M1
strAddress = M.SubMatches(1)
Next
End If
Dim objMsg As MailItem
Set objMsg = Application.CreateItemFromTemplate("C:\Documents and Settings\user\Application Data\Microsoft\Templates\FastRubberStampsProductionNotice.oft")
objMsg.Recipients.Add strAddress
' Copy the original message subject
objMsg.Subject = "PAYMENT RECEIVED - " & Item.Subject

' use for testing
objMsg.Send
' objMsg.Send
End Sub
 
I think I got it to work...... it seems the rule was the problem... not the script.

In the rule I actioned: display a specific message in the NEW Item Alert window.

This worked... however, I think the process halted there.

Once I removed that action the script then ran.... sending my reply email.

So I guess I can't have every thing.

Thank you
 
That was probably the problem - you shouldn't use actions with run a script, only conditions.
 
Hi Diane,

I stumbled upon your Outlook auto-reply script months ago, and after tweaking it, it has worked the majority of the time. Occasionally it will fail with the following error:

rules in error.png

How do I test to see what's causing the error?

This is what my script looks like:

'*************************************************

Sub RejectsAutoReply(Item As Outlook.MailItem)

Dim oRespond As Outlook.MailItem

Dim newSubject, newRecipients, nameRepair As String

Dim TestPos As Integer

'On Error GoTo Error_GoTo

' Use this for a real reply
'Set oRespond = Item.Reply
' Use this to forward
Set oRespond = Item.Forward

With oRespond
'.Recipients.Add Item.SenderEmailAddress
newSubject = Mid(.Subject, 5, 48)
newRecipients = Mid(.Subject, 53)

'put a space after every semicolon
newRecipients = Replace(newRecipients, ";", "; ")

'check to see if the new subject has "J.DS@XXX" in it. If it does and is not fixed, the email cannot be sent
TestPos = InStr(newRecipients, "J.DS@XXX")

'If newSubject contains J.DS@XXX,
If TestPos > 0 Then

'replace it with J.DS@XXXXX.com
newRecipients = Replace(newRecipients, "J.DS@XXX", "J.DS@XXXXX.com")
End If

.Recipients.Add (newRecipients)
.Recipients.ResolveAll
.Subject = newSubject
.Body = Item.Body

' includes the original message as an attachment

' .Attachments.Add Item

' use this for testing, change to .send once you have it working as desired
.Display
Pause (5)
.Send

End With
oRespond.UnRead = False
Set oRespond = Nothing

End Sub

'**************************************************

Public Function Pause(NumberOfSeconds As Variant)
On Error GoTo Error_GoTo
Dim PauseTime As Variant
Dim Start As Variant
Dim Elapsed As Variant
PauseTime = NumberOfSeconds
Start = Timer
Elapsed = 0
Do While Timer < Start + PauseTime
Elapsed = Elapsed + 1
If Timer = 0 Then
' Crossing midnight
PauseTime = PauseTime - Elapsed
Start = 0
Elapsed = 0
End If
DoEvents
Loop

Exit_GoTo:
On Error GoTo 0
Exit Function

Error_GoTo:
Debug.Print Err.Number, Err.Description, Erl
GoTo Exit_GoTo

End Function

'*********

Thank you again,

Shawn
 
I don't think there is anything wrong with the code, especially if it works most of the time. I have some macros that fail too and it just something with the rules engine - I know if you get mail in too fast, it will fail. It might be better to convert it to an ItemAdd macro or even NewMailEx.

What rules are you using to control what messages are touched by the script?
 
First off let me say you are awesome. I started out today like "I have to learn vbscript now?!" In less then two hours your script got me going home early so thanks much.

Would you have any idea why my script produces the email in a new window totally filled out, but dosent send it? I have to manually hit send. And as i am not always here, it would be difficult. Your help is much appreciated, Thanks!
 
This is supposed to handle the send:
' use this for testing, change to .send once you have it working as desired
.Display
Pause (5)
.Send
End With

try removing the pause and display lines.
 
Diane - I'm back.

I see this forum has had some activity whilst I've been away.

I need some help please.

I have no idea what I'm doing - but you got me thru last time... so you are my guru.

Basically I want to auto reply to an email, by pulling the reply address out of the body of an email by running a script. ( which is what you setup for me last time ).

and reply with a outlook template. ( I have already created the template FastRubberStampsOrderNotice.oft

I'm not sure whether I add to the existing script or do I start a new second script ?

I can open VB and see my previous script on the screen. but I cant see where to make a new script.

I've pasted this out of the existing script you did for me ( that works perfectly ) RED IS THE NEW INFORMATION I WOULD NEED

============================================================================================================================

Dim objMsg As MailItem
Set objMsg = Application.CreateItemFromTemplate("C:\Documents and Settings\user\Application Data\Microsoft\Templates\FastRubberStampsOrderNotice.oft")
objMsg.Recipients.Add strAddress
' Copy the original message subject
objMsg.Subject = "ORDER MSG SENT - " & Item.Subject

======================================================================================================================

Below - THIS IS THE EXISTING WORKING SCRIPT for your viewing ( Entire Script )- FRSPAID

===================================================================================================

Sub SendNew(Item As Outlook.MailItem)
Dim Reg1 As Object
Dim M1 As Object
Dim M As Object
Dim strAddress As String

Set Reg1 = CreateObject("VBScript.RegExp")
With Reg1
.Pattern = "(([\w-\.]*\@[\w-\.]*)\s*)"
.IgnoreCase = True
.Global = False
End With

If Reg1.Test(Item.Body) Then

Set M1 = Reg1.Execute(Item.Body)
For Each M In M1
strAddress = M.SubMatches(1)
Next
End If
Dim objMsg As MailItem
Set objMsg = Application.CreateItemFromTemplate("C:\Documents and Settings\user\Application Data\Microsoft\Templates\FastRubberStampsProductionNotice.oft")
objMsg.Recipients.Add strAddress
' Copy the original message subject
objMsg.Subject = "PAYMENT RECEIVED - " & Item.Subject

' use for testing
objMsg.Send
' objMsg.Send
End Sub

=======================================================================================

I hope I make sense - Thank you in advanced

(I'f I do need a second script -I would call it "FRSORDER"

 
Because you are working with basically the same thing, you just need to make a copy of the script and replace those two values.

Use .display for testing :)

' use for testing
objMsg.Send

- - - Updated - - -

Because you are working with basically the same thing, you just need to make a copy of the script and replace those two values.




Use .display for testing :)


' use for testing
objMsg.Send
 
Because you are working with basically the same thing, you just need to make a copy of the script and replace those two values.

Use .display for testing :)

' use for testing
objMsg.Send

- - - Updated - - -

Because you are working with basically the same thing, you just need to make a copy of the script and replace those two values.

Use .display for testing :)

' use for testing
objMsg.Send

Great - Sounds easy....... From inside VB I cant find a 'save as" option.

And I'm not sure where the script file is kept.

If I could find it... I'm capable of editing and renaming.

I'm sorry to sound so dumb.....
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
J Email Parsing VBA Script for Outlook - NEEDED Outlook VBA and Custom Forms 7
E New Macro/Script needed Using Outlook 5
R Script for simplifying spam control Outlook VBA and Custom Forms 8
J Outlook Rules VBA Run a Script - Multiple Rules Outlook VBA and Custom Forms 0
N Outlook 2021 'Run Script" Rules? Outlook VBA and Custom Forms 4
K Run a script rule to auto 'send again' on undeliverable emails? Outlook VBA and Custom Forms 1
W Designer Form 2013 and Script ? how ? Outlook VBA and Custom Forms 1
G print attachment straight away; working script edit not working Outlook VBA and Custom Forms 0
G Save attachment run a script rule Outlook VBA and Custom Forms 0
FryW Need help modifying a VBA script for in coming emails to auto set custom reminder time Outlook VBA and Custom Forms 0
G Script does not exist Outlook VBA and Custom Forms 0
G Trigger script without restaring outlook Outlook VBA and Custom Forms 7
A VBA Script - Print Date between first email in Category X and last email in Category Y Outlook VBA and Custom Forms 3
L Modifying VBA script to delay running macro Outlook VBA and Custom Forms 3
L Need help modifying a VBA script for emails stuck in Outbox Outlook VBA and Custom Forms 6
L VB script only runs manually Outlook VBA and Custom Forms 5
E Having some trouble with a run-a-script rule (moving mail based on file type) Outlook VBA and Custom Forms 5
D.Moore VB script to Digitaly Sign newly created outlook message Outlook VBA and Custom Forms 2
Aussie Rules Run a Script on an Incoming Email OK and then the Email reverts Outlook VBA and Custom Forms 0
D.Moore VBA script fail after Office 365 update Using Outlook 8
M Outlook 2013 Script Assistance - Save Opened Link with Subject Added Outlook VBA and Custom Forms 1
F Script for zip file attachment Outlook VBA and Custom Forms 1
S Change VBA script to send HTML email instead of text Outlook VBA and Custom Forms 3
Y Outlook 2013 Run A Script Outlook VBA and Custom Forms 4
Z Script to set account? Using Outlook 0
dweller Outlook 2010 Rule Ignores VBA Script Outlook VBA and Custom Forms 2
N VBA Script to Open highlighted e-mail and Edit Message Outlook VBA and Custom Forms 5
B Outlook rule run a Script doesn't work Outlook VBA and Custom Forms 1
J Calling a Public sub-routine from the script editor via VB script Outlook VBA and Custom Forms 4
K Outlook Archive to PST Files by Date Range VBA Script? Outlook VBA and Custom Forms 1
Peter H Williams Enable script containing VBA Outlook VBA and Custom Forms 12
H VB script in outlook form doesn't work anymore Outlook VBA and Custom Forms 2
A Script to fetch data from mails in restricted collection and sending them to excel Using Outlook 1
B Wanting to run a script that will filter any body that has a russian link in it. Outlook VBA and Custom Forms 5
Bri the Tech Guy Registry Tweak to make "Run a Script" Action Available Outlook VBA and Custom Forms 2
V VB script code to save a specific email attachment from a given email Outlook VBA and Custom Forms 14
Bri the Tech Guy Run Script rule not running for newly arriving messages Outlook VBA and Custom Forms 25
M Subject Line Automation - Trigger Script Delayed Outlook VBA and Custom Forms 2
Q Script to create a pst file for Archiving Using Outlook 1
Vijay Error in rule- Run a script Using Outlook 1
R VBA Script Quick Parts Using Outlook 1
Vijay Run script doesn't work in outlook Using Outlook 1
Q VBA Script to move item in secondary mailbox Outlook VBA and Custom Forms 2
Diane Poremsky Run a Script Rule: Send a New Message when a Message Arrives Using Outlook 2
F Avoid sending duplicate using Outlook script Outlook VBA and Custom Forms 2
oliv- How to Run a Script IN AN ADDIN with Outlook's Rules and Alerts Outlook VBA and Custom Forms 2
L Run a Script Rule doesn't work Using Outlook 5
N Outlook script to forward emails based on senders' address Outlook VBA and Custom Forms 2
S using script rule to save attachments on arrival Outlook 2010 Outlook VBA and Custom Forms 9
X Outlook script to run excel data Outlook VBA and Custom Forms 1

Similar threads

Back
Top