PC Review


Reply
Thread Tools Rate Thread

Automatic email sending?

 
 
EARTHWALKER
Guest
Posts: n/a
 
      31st Aug 2004
Hi excel gurus Do any of you know if there's a way where, once
spreadsheet has been updated, an automatic note or an email can be sen
to people telling them that x spreadsheet has been updated?

Even perhaps once you've updated the spreadsheet, you could have
macro which sends out lots of net send commands to inform people?

Would be really handy

--
Message posted from http://www.ExcelForum.com

 
Reply With Quote
 
 
 
 
Don Guillett
Guest
Posts: n/a
 
      31st Aug 2004
http://www.rondebruin.nl/


--
Don Guillett
SalesAid Software
(E-Mail Removed)
"EARTHWALKER >" <<(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi excel gurus Do any of you know if there's a way where, once a
> spreadsheet has been updated, an automatic note or an email can be sent
> to people telling them that x spreadsheet has been updated?
>
> Even perhaps once you've updated the spreadsheet, you could have a
> macro which sends out lots of net send commands to inform people?
>
> Would be really handy.
>
>
> ---
> Message posted from http://www.ExcelForum.com/
>



 
Reply With Quote
 
EARTHWALKER
Guest
Posts: n/a
 
      31st Aug 2004
I wouldn't have a clue on where to start there m8.

Where's Ron or Frank when you need them :

--
Message posted from http://www.ExcelForum.com

 
Reply With Quote
 
Ron de Bruin
Guest
Posts: n/a
 
      31st Aug 2004
> Where's Ron or Frank when you need them

Here i am<g>

Which mail program do you use


--
Regards Ron de Bruin
http://www.rondebruin.nl


"EARTHWALKER >" <<(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
>I wouldn't have a clue on where to start there m8.
>
> Where's Ron or Frank when you need them
>
>
> ---
> Message posted from http://www.ExcelForum.com/
>



 
Reply With Quote
 
EARTHWALKER
Guest
Posts: n/a
 
      31st Aug 2004
Outlook express m8. Version 6, if that makes any difference

--
Message posted from http://www.ExcelForum.com

 
Reply With Quote
 
Ron de Bruin
Guest
Posts: n/a
 
      31st Aug 2004
I must go now

I give you a example this evening when i come home

--
Regards Ron de Bruin
http://www.rondebruin.nl


"EARTHWALKER >" <<(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
> Outlook express m8. Version 6, if that makes any difference.
>
>
> ---
> Message posted from http://www.ExcelForum.com/
>



 
Reply With Quote
 
Ron de Bruin
Guest
Posts: n/a
 
      31st Aug 2004
Hi EARTHWALKER

In OE you must use Sendkeys (not very reliable) to send the mail
Try this small example in the Thisworkbook module

It will send the mail when you save the file.

More info about sending text in the body with OE you can read here
http://www.rondebruin.nl/mail/oebody.htm

Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
Dim msg As String
Dim Recipient As String, Subj As String, HLink As String

Recipient = "(E-Mail Removed)"
Subj = "Test"
msg = "Hi there the workbook is changed"

HLink = "mailto:" & Recipient & "?"
HLink = HLink & "subject=" & Subj & "&"
HLink = HLink & "body=" & msg
ActiveWorkbook.FollowHyperlink (HLink)
Application.Wait (Now + TimeValue("0:00:02"))
SendKeys "%s", True
End Sub

Maybe you can use CDO to do it
http://www.rondebruin.nl/cdo.htm

You don't see it then when the mail is send with CDO



--
Regards Ron de Bruin
http://www.rondebruin.nl


"Ron de Bruin" <(E-Mail Removed)> wrote in message news:%23VjJC%(E-Mail Removed)...
>I must go now
>
> I give you a example this evening when i come home
>
> --
> Regards Ron de Bruin
> http://www.rondebruin.nl
>
>
> "EARTHWALKER >" <<(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
>> Outlook express m8. Version 6, if that makes any difference.
>>
>>
>> ---
>> Message posted from http://www.ExcelForum.com/
>>

>
>



 
Reply With Quote
 
EARTHWALKER
Guest
Posts: n/a
 
      31st Aug 2004
Cheers Ron. I'll give that a try.

How would you go about adding more recipients

--
Message posted from http://www.ExcelForum.com

 
Reply With Quote
 
Ron de Bruin
Guest
Posts: n/a
 
      1st Sep 2004
Hi EARTHWALKER

Recipient = "(E-Mail Removed);(E-Mail Removed)"



--
Regards Ron de Bruin
http://www.rondebruin.nl


"EARTHWALKER >" <<(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
> Cheers Ron. I'll give that a try.
>
> How would you go about adding more recipients?
>
>
> ---
> Message posted from http://www.ExcelForum.com/
>



 
Reply With Quote
 
EARTHWALKER
Guest
Posts: n/a
 
      1st Sep 2004
Ah, I see. Same as you would in the to line, in outlook express. man
thanks Ron

--
Message posted from http://www.ExcelForum.com

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
automatic sending of email and reply + remember me to send other email after x day: possible? -= Luca =- Microsoft Outlook BCM 1 30th Oct 2007 03:58 PM
Automatic Prompt when sending an email David Smith Microsoft Outlook 2 14th Dec 2006 11:10 PM
Automatic completion of email address when sending email =?Utf-8?B?cHJjb2luY29sbGVjdG9y?= Microsoft Outlook Discussion 4 29th Sep 2004 10:19 PM
Sending Automatic Email =?Utf-8?B?QXJuZSBCZXJ1bGRzZW4=?= Microsoft VB .NET 2 27th Jun 2004 03:55 PM
automatic sending of email while still writing peter beukers Microsoft Outlook 2 1st Dec 2003 10:07 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:06 PM.