Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to Click to Email (Eudora) to a list of people?

DesktopClick Email to a list.

How to Click to Email (Eudora) to a list of people?

by  jnicks  Posted    (Edited  )
EMAIL FROM THE DESKTOP USING EUDORA ADDRESS BOOK LISTS

[ul]Summary: lets you edit a message and then send it to a list of
people in an Eudora Address Book. Eudora Automation makes it very easy.
[/ul] [tt]

Make a batch file to edit Message.Txt and then send it to
everyone in the EuList address book item in Eudora. You will send to some other list in the address book, EUList we just used for testing.

Send2Lst.Bat
[ul]
Code:
@echo off
start /w notepad message.txt
echo To:
EUList
Code:
 >header
echo.          >>header
copy header + message.txt message.msg
e:\wpr\eudora\eudora.exe
Code:
message.msg

Make a link to the folder in which you placed file Send2Lst.bat . Be sure to set the startup or working directory to that folder otherwise file message.txt and the header will be lost.

[ol][li]change EuList to the name of your list in the Eudora address
book, the first ECHO.
[li]Change e:\wpr\eudora\eudora.exe to the drive and path for where your
Eudora is kept.
[/ol]

Other notes:

You do not need a Subject: but it is good to have one.
You may spoof From:
Attachments are X-Attachments:

as in
Code:
    Echo From: ArthurRubenstein@piano.com >>header
    echo  Subject: Daily List   >>header
    echo X-Attachments: c:\autoexec.bat, c:\config.sys >>header


The Eudora documentation is at:

http://eudora.com/developers/

go to 'Command Line for Windows" about halfway down.


[/tt]
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top