Sending Mail from unix

ss_kiran

Member
Hi !!!
Does any one know how to send mails from unix to hotmail / yahoo account from digital unix server,

Thanks in advance

Kiran
 

mohanty

New Member
There are so many mail application available freely on web. One among those is "mutt". You can download this utility from web and install on your OS. This application has got very extensive features. Hope this should solve your purpose.
 

Biga Cubensis

New Member
output to value(cFile) binary.
put unformatted "Mail message".
output close.

unix silent value("mail -s " + chr(34) + cSubject +
chr(34) + " " + cAddress + " < " +
cFile).
 
Top