Operating System - HP-UX
1834104 Members
2440 Online
110063 Solutions
New Discussion

Showing "To" field in sendmail

 
Nisar Ahmad
Regular Advisor

Showing "To" field in sendmail

Hi There
Sendmail noramally makes the e-mail appear as a blind copy, that is noting in to: field. If we send blind copy messages to an organisation it will treat the e-mail as spam and ignore and hence our file will not be processed. Is there an option or another tool where we can get the e-mail message to show the to value.

Thanks in advance

Nisar
2 REPLIES 2
Steve Steel
Honored Contributor

Re: Showing "To" field in sendmail

Hi


Look at

http://www.sendmail.org/

Since HP bases on the same version and then searching on blind copy

read


http://www.sendmail.org/~ca/email/README.cf.html


Steve Steel
If you want truly to understand something, try to change it. (Kurt Lewin)
Jose Mosquera
Honored Contributor

Re: Showing "To" field in sendmail

Hi,

SUBJECT="Test"
BODY="Hello" -or- BODY=`cat anyfile`
TO="target_user@domain.com"
FROM="source_user@domain.com"

(echo "From:$FROM\nTo:$TO\nSubject:\nImportance:High\n\n$BODY")|sendmail $TO

Rgds.