1

I want to set up mailutils on my terminal problem is that I don't want to create another email account. My question is, is it possible to use my gmail from my terminal ?

Sebastian
  • 31
  • 1
  • 3

1 Answers1

0

The easiest way to send mail from terminal is to use sendemail program. Install it

sudo apt-get install sendemail

Bow you can send it by this command

sendemail -f <from_address> -t <to_address> -u "<subject>" -m "<message>" -s smtp.gmail.com:587 -o tls=yes -xu <your_gmail_address>

It will ask for password, which unfortunately will be displayed on screen.

To make it shorter to enter, you can make an alias in bashrc.

There are also very many ways to do it. I use git send-email.

You can setup mailutils to the same server.

Pilot6
  • 92,041