A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

how to add ...person wrote...email address..reply



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old January 5th 10, 03:38 AM posted to microsoft.public.outlook.program_vba
wonder why?
external usenet poster
 
Posts: 1
Default how to add ...person wrote...email address..reply

My question about Outlook: How do I have this entered automatically when
sending a reply?

"In a message dated 9/21/09 11:10:12 P.M. Eastern Daylight Time,
writes:"

Is there a website to learn this? Or is there software that will do this
and some other such entries.
The automatic...out of office...we can find.. I have not been able to find
this online.
Thanks.



In a message dated 9/21/09 11:10:12 P.M. Eastern Daylight Time,
writes:
Ads
  #2  
Old January 5th 10, 02:12 PM posted to microsoft.public.outlook.program_vba
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default how to add ...person wrote...email address..reply

If you want to learn about Outlook programming the best site is
www.outlookcode.com.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"wonder why?" wrote in message
news
My question about Outlook: How do I have this entered automatically
when
sending a reply?

"In a message dated 9/21/09 11:10:12 P.M. Eastern Daylight Time,
writes:"

Is there a website to learn this? Or is there software that will do this
and some other such entries.
The automatic...out of office...we can find.. I have not been able to
find
this online.
Thanks.



In a message dated 9/21/09 11:10:12 P.M. Eastern Daylight Time,
writes:


  #3  
Old January 5th 10, 08:51 PM posted to microsoft.public.outlook.program_vba
pete the greek
external usenet poster
 
Posts: 6
Default how to add ...person wrote...email address..reply

hi heres a starter for you

a macro you could have on a button

Sub replytest()
Set ThisItem = Application.ActiveExplorer.Selection
Set thisreply = ThisItem.Item(1).Reply
Message = InputBox("please type your message")
thisreply.Body = "In a message dated " & Date & Message & " Eastern Daylight
writes:" & thisreply.Body

thisreply.Send
End Sub


my only problem is i cant work out how to make the reply visible so you can
add your message to the mail
you could add an inputbox to the macro to gather your message ( as shown)

but im sure someone out there will put me out of my misery and explain how
to get the reply visible so you could type directly in it


regards

pete


"wonder why?" wrote:

My question about Outlook: How do I have this entered automatically when
sending a reply?

"In a message dated 9/21/09 11:10:12 P.M. Eastern Daylight Time,
writes:"

Is there a website to learn this? Or is there software that will do this
and some other such entries.
The automatic...out of office...we can find.. I have not been able to find
this online.
Thanks.



In a message dated 9/21/09 11:10:12 P.M. Eastern Daylight Time,
writes:

  #4  
Old January 8th 10, 08:02 PM posted to microsoft.public.outlook.program_vba
pete the greek
external usenet poster
 
Posts: 6
Default how to add ...person wrote...email address..reply

try this

you need to add this code in the vba window(alt+f11) will get you there

once you have it there you could customise a toolbar to give you a button to
run it

Sub replytest()
Set ThisItem = Application.ActiveExplorer.Selection
Set thisreply = ThisItem.Item(1).Reply
thisreply.Body = "In a message dated" & Chr(32) & Date & Chr(32) & Time &
Chr(32) & "Eastern Daylight Time" & Chr(10) & Chr(10) &
writes:" & thisreply.Body

thisreply.Display
End Sub

"wonder why?" wrote:

My question about Outlook: How do I have this entered automatically when
sending a reply?

"In a message dated 9/21/09 11:10:12 P.M. Eastern Daylight Time,
writes:"

Is there a website to learn this? Or is there software that will do this
and some other such entries.
The automatic...out of office...we can find.. I have not been able to find
this online.
Thanks.



In a message dated 9/21/09 11:10:12 P.M. Eastern Daylight Time,
writes:

 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
if i reply all will a person bcc'd get my reply? gee Outlook - General Queries 2 October 30th 09 03:37 AM
How to change form of reply lead-in ("Someone" somewhere wrote in message news:...)? JoeU2004 Outlook Express 14 April 5th 09 03:25 PM
OE6 Reply e-mail address problem (doesn't reply using address email was sent to) mvhash Outlook Express 5 June 26th 08 08:16 PM
Reply to a different person Nene Outlook - General Queries 2 March 31st 06 09:58 PM


All times are GMT +1. The time now is 12:51 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.