HTML formatted emails with utl_smtp
HTML format emails allows images, fonts, colours, hyperlinks. It can be done with utl_smtp (after the jump) and with utl_mail
Read More HTML formatted emails with utl_smtpHTML format emails allows images, fonts, colours, hyperlinks. It can be done with utl_smtp (after the jump) and with utl_mail
Read More HTML formatted emails with utl_smtpSend email from unix with attachment, which in this case has been zipped with a password: zip -P mypassword /tmp/myfile.zip myfile.csv mutt -a /tmp/myfile.zip -s “Zipfile Attached” user@email.com < /dev/null
Read More mutt email attachmentPlain text email: cat << EOF | /usr/sbin/sendmail -t to: myemail@mysite.com from: “no reply” (Automated Processor) subject: My subject My email body. EOF Or HTML formatted email: cat
Read More Script to send email unix with sendmail