New Line In shell Script

Hi All,

I written a shell script to trigger a email job. The email message body should look like as below.

Hi Team,
The upload job completed successfully.
Regards,
Vinodh Kumar

But all body message comes in a single line. Can any one tell me how to make into new line. I tried \n it doesn't work.

Note: I am passing message body as argument value with quotes.

~Vinodh' Kumar

echo "
Hi Team,
The upload job completed successfully.
Regards,
Vinodh Kumar
" | mailx -s 'test' me@my.com you@our.com

I am passing the message body as argument from other shells script to mail shell script. So i cant use echo.