EDIT: Thanks y’all! I got this working by installing mutt and configuring it with my Gmail info. Please note the warning from u/jherazob below–if this were something mission critical I would not want to rely on this solution.
================
Noob question incoming, thanks in advance for any help with this!
I have a specific use case in which I want to send an automated email or text to myself once a day (the message is different each time–otherwise I would just set an alarm, lol!). I’m running Pop_OS on an old desktop computer. Where I’m stuck is getting an email to successfully send from the command line. I’m looking for easy-to-follow instructions that would help me do that, and none of the articles or videos I’ve come across thus far have helped.
I’m aware of Twilio and other services that send SMS messages, but I’m looking for something free. Especially since I only need to text one person (myself), and infrequently at that.
Below is my attempt to send an email with the telnet command. Nothing ever came through…
XXXXXXXX@pop-os:~$ telnet localhost smtp
Trying ::1...
Connected to localhost.
Escape character is '^]'.
220 pop-os ESMTP Exim 4.95 Ubuntu Sun, 07 Jan 2024 15:12:28 -0500
HELO gmail.com
250 pop-os Hello localhost [::1]
mail from: XXXXXXXX@gmail.com
250 OK
rcpt to: XXXXXXXX@gmail.com
250 Accepted
data
354 Enter message, ending with "." on a line by itself
Subject: Test
Body: Is this working?
.
250 OK id=1rMZW4-0002dj-Uy
quit
All things programming and coding related. Subcommunity of Technology.
This community’s icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.
If all you need is to send a notification from a script to your phone, I’d like to suggest https://ntfy.sh/
Standard tool to send email is
mailx
, it is also often aliased asmail
.If you’re ok using Signal I use https://github.com/AsamK/signal-cli for sending myself texts through command line
Oh sick, thank you! I’ll check it out
Awesome, I actually use this docker container that implements it https://github.com/bbernhard/signal-cli-rest-api
Implementing a telegram or discord bot might be easier
Your current approach of talking raw SMTP is likely to be more hassle than is worthwhile, and since the days of permissive SMTP servers are long gone, might not work at all.
Since you appear to be using an Debian-based Linux distro, I suggest this approach:
apt install dma
/usr/sbin/sendmail
command (which comes with dma or exim) to send messages from your scripting language of choice.If you prefer to receive messages as SMS, note that most major mobile carriers maintain an email-to-sms gateway for this purpose. Some web searches will probably lead you to the one for your carrier. They usually accept email at an address like 123456789@sms-gateway.example.com
Thank you so much for this!
Many cell providers have a mail to SMS gateway. Just sent email to the correct address and you’ll get SMS. As far as sending mail either with bash or with Python. That is quite possible and not hard.
Sorry I do not have the code at hand. Memory is Python standard library has SMTP capability and Bash you can just use the mail command. May have to configure mail on your Linux box too or just use a remote server.
Feel free to share the code or code repository. I’m interested in this as well
You can fire a notification to AWS SNS and have it email, text, fire a program, anything.
Amazing, looking into this now
Yes, you can. Though as another commenter mentioned, doing it like you currently attempted to, is way too much of a hassle.
That is, don’t try and negotiate your own SMTP session and content. Being POP_OS is Ubuntu based, you should be able to use the
mail
command frommailutils
packageecho "Is this working?" | mail -s "Subject" recipient@email-address.org
Also might want to consider something like Apprise (Everything and the kitchen sink) or NTFY (Does one thing, does it well) for other types of notification methods.
This didn’t work for me, but what I’m gathering from the other comments is I need an SMTP configuration on my machine before I can do this. Thanks so much for the help!
If you use gmail you can create an app password that can be used for this. Or if you have a domain you can e.g. use free tier zoho mail or something to create an email address.
I personally use
python
plus AWS SES to handle outgoing mail. Sure you have to have an AWS account, setup the SES feature, and get out of the AWS sandbox but once that’s front loaded you have a great little e-mail service.FYI, I cross posted your question to three Programming.dev communities:
Shell Scripting
Python
Learn Programming
Thank you so much!!
Any reason not to use something like Gotify and handle it as a notification instead?
Hadn’t heard of it till now but I’ll look into it! Thank you!
As somebody who has been there before, it’s 100% possible to use email for notifications and have that fully scriptable, but given how extremely stringent email providers have become over the decades and still getting tougher as we speak, i would very much recommend not depending on email for this. Ideally you’d have multiple channels in case one fails for the REALLY vital stuff, but at least you should have one that is not email. There’s many:
Whatever you do have in mind that ANY of these can fail, so if there’s anything truly critical be sure to both have a way to know if one notification system is failing, and to have a plan B to receive notifications/alerts even if one is down. Depends on how critical stuff is of course, for tests you don’t need triple redundancy or whatever, but for the service the company’s income depends on you don’t wanna have a system that stopped working and you never knew.
This is great advice, thank you so much! I can feel the weight of countless bitter experiences in your post, and I am taking that shit to heart. Thank you again
You’re going to have to use an external service for email perhaps connected to something like Postfix or just using the email provider’s API - something else to think of if you just need something on your phone as a message / reminder is to use KDE Connect like in this tutorial https://doronbehar.com/articles/using-kdeconnect-to-comfortably-send-sms-messages-from-the-shell/
Thank you!
You could probably do something with tasker to create these daily notifications
Ah, you mean run the script directly on the phone without involving the desktop computer? I hadn’t considered that but it’s a great suggestion. Thanks!