Login
User Name:

Password:



Register

Forgot your password?
Any Smaug muds running?
Oct 5, 2024 4:34 pm
By Zedethar
SmaugFUSS 1.8/1.9
Sep 21, 2024 5:04 am
By Elwood
Bug: char_check( )
Aug 31, 2024 12:27 am
By GatewaySysop
Bug: move_char( )
Aug 30, 2024 3:52 am
By GatewaySysop
Bug: spell_animate_dead
Aug 25, 2024 10:48 pm
By GatewaySysop
Discord Websocket Server
Author: Khonsu
Submitted by: Khonsu
Mapout Fix
Author: Khonsu
Submitted by: Khonsu
Progfind command
Author: Khonsu
Submitted by: Khonsu
do_owhere recursive
Author: Khonsu
Submitted by: Khonsu
Changes list / Addchange
Author: Khonsu
Submitted by: Khonsu
Users Online
AhrefsBot

Members: 0
Guests: 11
Stats
Files
Topics
Posts
Members
Newest Member
492
3,803
19,667
598
MADEiUM

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 >>