In one article, I have talked about mutt, a text based mail client. Although not as popular as Thunderbird or Evolution, mutt still has the love of many avid Linux users. If you just want to read the text of the emails like me, you should consider using mutt as the default mail client.
I can send a random image as an attachment to an email address using mutt but how can I send 10 random images from a folder and attach them all and email them?
the following works fine with one random image
mutt -s "10 random images" my@email.com -a "$( find /home/images -type f | sort -R | head -1 )" < message.txt
thanks
I have been trying to correctly get linux to send an email using mutt. I keep getting localhost as the sending server.
I've been trying to figure out how to start Mutt in such a way that it's just like starting up an interactive Mutt and creating a new email, then copying the output of git request-pull into the body. git request-pull HEAD https://...
Hi all,
Recently i started using sendmail instead of mutt to send the email .
In one script i have both sendmail and mutt included and they both give different emails.
Code:
##some HTML creation
1) First email
cat - $data_dir/TheMailer.txt <<EOF | sendmail -oi -t
From: ${MAILFROM}
To: ${MAILTO}
Subject: $SUBJECT
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7
I would like to use mutt to open mailto links, or right click > send to, in iceweasel. Mutt works fine on its own, and send link works fine with gmail set in iceweasel preferences. I have attempted to set mailto-mutt in preferences, but nothing happens.Not sure if this is related or not, but thunar send to mail recipiant feature is similarly not working. I haven't fully l
How can I send a random image from a folder and any of its subfolders
the name of the file could be anything.jpg
something like the following but to take a random image from /images/folder and any of the subfolders
mutt -s "image of the day" my@mail.com -a /images/image1.jpg < mailmessage.txt
thanks
Hi,I was wondering if anyone knew of an easy way to yank/copy text while reading an email in Mutt, using just key strokes.
So the idea of this was to create a "server" that would work by reading my email and looking for certain key headers in the email. When an email with a certain header is detected, the commands in it are interpreted and run. These are not Linux commands mind you, just different commands I have made available.