Using mailx to send in the future? Also change "from" address?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Using mailx to send in the future? Also change "from" address?
# 1  
Old 08-09-2007
Using mailx to send in the future? Also change "from" address?

Hey, I've got a script using mailx to send an email to the user, but i'd like it if I could have it send the email sometime in the future, not right away. And by future, i mean like 1 minute in the future.

And I don't want it to halt the script in anyway. Perhaps there's a way to have it spawn a process or something that runs for a minute before sending the mail or something?

Also, is there a way to specify the "from" address using mailx? I would rather have a different reply-to address than the system account.
# 2  
Old 08-09-2007
How about

Code:
futureMail()
{
   sleep 60
   mailx .....
}


futureMail &

and change the source by changing/adding field that identifies the source of the message, not sure if it's "From" or "ReplyTo".

Last edited by porter; 08-09-2007 at 06:31 PM..
# 3  
Old 08-13-2007
Quote:
Originally Posted by porter
How about

Code:
futureMail()
{
   sleep 60
   mailx .....
}


futureMail &

and change the source by changing/adding field that identifies the source of the message, not sure if it's "From" or "ReplyTo".
Thanks! Exactly what i was looking for.
# 4  
Old 11-10-2008
If you have your "atd" running, you can use this format:


Code:
echo "mailx -s 'subject' e@mail.com << /path/to/file" | at 15:03

This will send the e-mail out at the next instance of "15:03" (3:03 p.m.)... today if it is currently before 15:03, or tomorrow if it is after 15:03.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bash script - Print an ascii file using specific font "Latin Modern Mono 12" "regular" "9"

Hello. System : opensuse leap 42.3 I have a bash script that build a text file. I would like the last command doing : print_cmd -o page-left=43 -o page-right=22 -o page-top=28 -o page-bottom=43 -o font=LatinModernMono12:regular:9 some_file.txt where : print_cmd ::= some printing... (1 Reply)
Discussion started by: jcdole
1 Replies

2. Shell Programming and Scripting

Expect: spawn id exp5 not open while executing "expect "$" { send "sudo su -\r" }"

Hi All, i am trying to ssh to a remote machine and execute certain command to remote machine through script. i am able to ssh but after its getting hung at the promt and after pressing ctrl +d i am gettin the out put as expect: spawn id exp5 not open while executing "expect "$" {... (3 Replies)
Discussion started by: Siddharth shivh
3 Replies

3. UNIX for Dummies Questions & Answers

Using "mailx" command to read "to" and "cc" email addreses from input file

How to use "mailx" command to do e-mail reading the input file containing email address, where column 1 has name and column 2 containing “To” e-mail address and column 3 contains “cc” e-mail address to include with same email. Sample input file, email.txt Below is an sample code where... (2 Replies)
Discussion started by: asjaiswal
2 Replies

4. Shell Programming and Scripting

Find lines with "A" then change "E" to "X" same line

I have a bunch of random character lines like ABCEDFG. I want to find all lines with "A" and then change any "E" to "X" in the same line. ALL lines with "A" will have an "X" somewhere in it. I have tried sed awk and vi editor. I get close, not quite there. I know someone has already solved this... (10 Replies)
Discussion started by: nightwatchrenba
10 Replies

5. Shell Programming and Scripting

Awk,sed : change every 2nd field ":" to "|"

Hi Experts, I have a string with colon delimited, want 2nd colon to be changed to a pipe. data: 101:8:43:4:72:14:41:69:85:3:137:4:3:0:4:0:9:3:0:3:12:3: I am trying with sed, but can change only 1 occurance: echo "101:8:43:4:72:14:41:69:85:3:137:4:3:0:4:0:9:3:0:3:12:3:" | sed 's/:/|/2'... (5 Replies)
Discussion started by: rveri
5 Replies

6. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

7. Shell Programming and Scripting

Help to change the file with "sed" and "awk"

Hi experts I want your help to change the file format to my wanted version, please give me a hand thanks $cat file install pass make os pass make build kernel failed usb storage pass chane to | *install* | *make os* | *make build kernel* | *usb storage* | | pass | pass... (7 Replies)
Discussion started by: yanglei_fage
7 Replies

8. OS X (Apple)

Ho do I masquerade the "user@user.local" address in mail/mailx?

Hi, I'm brand new here and looking for a solution: I'm using mail or mailx. The default reply address is «myshortusername@mylongusername.local» which makes absolutely no sense for anybody receiving my emails. But how do I change it? There seem to be many solutions but none for Mac OS X.... (0 Replies)
Discussion started by: gczychi
0 Replies

9. HP-UX

use an alias for "from" address in mailx

Hi, I am sending an attchement using the mailx command in HP-UX, I am using the following command, uuencode test.csv test.csv | mailx -r "Healthy Planet" -m -s "$2" someone@somewhere.com when I do this, I am receiveing the mail and in the from address field, its displayed in the... (1 Reply)
Discussion started by: muralikancherla
1 Replies

10. UNIX for Advanced & Expert Users

How to change "From" in mailx

Hi I'd like to have a "From" such as the company name or my name instead of the the user@domain.name while using mailx. Please let me know how I can achieve that. Also, Im using uuencode and plaintext, so the mail goes with body and attachment. So any solution has to take this into... (5 Replies)
Discussion started by: R00tSc0rpi0n
5 Replies
Login or Register to Ask a Question