Login
User Name:

Password:



Register

Forgot your password?
do_owhere recursive
Author: Khonsu
Submitted by: Khonsu
Changes list / Addchange
Author: Khonsu
Submitted by: Khonsu
6Dragons mp3 sound pack
Author: Vladaar
Submitted by: Vladaar
AFKMud 2.2.3
Author: AFKMud Team
Submitted by: Samson
SWFOTEFUSS 1.5
Author: Various
Submitted by: Samson
Users Online
AhrefsBot, Yandex

Members: 0
Guests: 21
Stats
Files
Topics
Posts
Members
Newest Member
489
3,791
19,644
596
Elwood

Today's Birthdays
There are no member birthdays today.
» SmaugMuds » Codebases » SWR FUSS » mail command
Forum Rules | Mark all | Recent Posts

mail command
< Newer Topic :: Older Topic >

Pages:<< prev 1 next >>
Post is unread #1 Jul 13, 2010 2:58 am   
Go to the top of the page
Go to the bottom of the page

Banner
Magician
GroupMembers
Posts169
JoinedNov 29, 2005

 
I'm using my MUD to parse information into the mail command, and while it works, I've yet to figure out how to change the 'From' address, but more importantly, how to add linebreaks to the message. Is it possible or would it be simpler to push it into a sendmail php script?

Post is unread #2 Jul 13, 2010 3:15 am   Last edited Jul 13, 2010 3:31 am by ayuri
Go to the top of the page
Go to the bottom of the page

ayuri
Magician
GroupMembers
Posts239
JoinedJun 13, 2008

 
Normally 'mail' is used by username@FQDN. Example, bob@foobar.com. AFAIK if you want it to come from a specific user, that user must be running mail. Or, you can pass the -U switch, or do a mail -f /var/mail/ (same as -U).

The mail editor is much like the editor 'ed' so, as to line breaks I'm going to have to say read up on ed and get to know it. I'm the heart of eVIl type of girl. In the end, it might just be simpler to pipe it all to a php script.


**EDIT
Forgot about mailx. It has an -r flag to do a 'from' field. Haven't tested it however.
**EDIT AGAIN
So, umm - mailx might not be the same as the opensource mailx. AIX system 5.x and 6.x have a mailx utility that I use at work to send messages to some users so they don't see 'from root@prodserver'. Instead they see 'cpmscriptserver@prodserver'.

Hope this helps some,
ayuri

Post is unread #3 Jul 18, 2010 9:54 am   
Go to the top of the page
Go to the bottom of the page

Banner
Magician
GroupMembers
Posts169
JoinedNov 29, 2005

 
If anyone else needs to know, I solved this with the following command:

echo "Test Message" | mail -a "Content-type:text/html;" -s "Testing Email" "email@domain.com"


The Content-type allows you to send a body through with html tags, such as
for spacing, or including images or the like.

Pages:<< prev 1 next >>