Operating System - HP-UX
1753399 Members
7130 Online
108792 Solutions
New Discussion юеВ

Re: Can I set the sender using elm?

 
SOLVED
Go to solution
Vogra
Regular Advisor

Can I set the sender using elm?

Hi All!

I need to set the sender using elm via prompt.
I'm using:
echo "[include 250613.htm application/octet-stream base64]" | elm -s "test" e-mail@domain.com.

It's possible?
Thanx,
Lima
We are spirits in the material world
2 REPLIES 2
Pete Randall
Outstanding Contributor
Solution

Re: Can I set the sender using elm?

Lima,

See Sanjay's response in this thread:

http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=618467


Pete

Pete
Uday_S_Ankolekar
Honored Contributor

Re: Can I set the sender using elm?

Here is the example from Doc..

To add a name to the "From" field in elm(1), add the following to the
$HOME/.elm/elmheaders file (if this file does not exist, create it):

From:[name]

For example:

$ cat /home/js/.elm/elmheaders
From:Joe Smith
$

After making the above change, this is the mail header that the recipient sees:

From: Joe Smith [mailto:js@morden.hp.com]
Sent: Tuesday, October 26, 2004 16:23
To: JohnDoe@foo.hp.com
Subject: Test


Good Luck..