I need to see the email output from my jobs. How do I send this email output to my email address?

You will need to include a mail-user directive in your SLURM job script to direct the output to your email address. 

Include the following lines in your job script (substituting your UMN username for YourInternetID):

#SBATCH --mail-type=END,FAIL     # Mail events (can use any combination of the following: ALL, NONE, BEGIN, END, FAIL)
#SBATCH --mail-user=YourInternetID@umn.edu

 
You may also substitute in any email address you wish to send to, other than your UMN email address. For example, to send a gmail address, use the following in your script:
 
#SBATCH --mail-type=END,FAIL     # Mail events (can use any combination of the following: ALL, NONE, BEGIN, END, FAIL)
#SBATCH --mail-user=YourEmail@gmail.com
 

Keywords: email forwarding, vacation
These instructions verified correct on February 26, 2021.
Please contact help@msi.umn.edu if any problems are encountered.

Category: 
Jobs