#sendemail
Explore tagged Tumblr posts
Text
Configuration to use sendemail with Gmail in a bash script
Requried packages (in Debian): libio-socket-ssl-perl libnet-ssleay-perl perl sendemail
subject="Subject text" message="Message text"
server="smtp.gmail.com:587" user="username" password="password"
options="tls=yes"
Command sendemail -f $from -t $to -cc $cc -u "$subject" -m "$message" -s $server -xu $user -xp $password -o $options > /dev/null
5 notes
·
View notes
Text
Perl stuff - sendEmail broken by IO::Socket::SSL 1.74
Because I really need my computer to automatically send things to my kindle. x3 Upon upgrading to IO::Socket::SSL 1.74, many Linux and *BSD users will find that sendEmail dies with something like this:
invalid SSL_version specified at .../IO/Socket/SSL.pm line 308.
Fortunately, there is a fix, courtesy of a "Peter Bance". Just tweak line 1907 in your sendEmail script (this is in "/usr/bin/sendEmail" in debian and ubuntu) from:
if (! IO::Socket::SSL->start_SSL($SERVER, SSL_version => 'SSLv3 TLSv1')) {
to:
if (! IO::Socket::SSL->start_SSL($SERVER, SSL_version => 'SSLv23:!SSLv2')) {
I'm using: perl 5.14.2 OpenSSL 1.0.1 14 Mar 2012 .../IO/Socket/SSL.pm: 1.74 sendEmail: 1.56 It's working fine for me now, but I've heard people are still having strange issues in certain use cases. Jun 10th, 2012 12:34am
4 notes
·
View notes
Text
I will send emails one by one manually for your business
https://www.fiverr.com/ekhan2050/send-emails-one-by-one-manually-for-your-business
1 note
·
View note
Text
Monitor Server Disk Space and Send Email Alerts with Shell Script
In this blog post, we will guide you through the process of creating a shell script that will monitor server disk space and send email alerts using the Simple Mail Transfer Protocol (SMTP). We will make use of the “sendEmail” package, which ensures reliable email delivery, unlike when using the “sendmail” package. By the end of this tutorial, you will have a robust monitoring system in place that…
View On WordPress
0 notes
Video
youtube
How to Send Emails Using Python - Plain Text, Adding Attachments, HTML Email Attachment as PDF and many more | Learn Python Programming
0 notes
Video
youtube
How to Send Emails with Node.js | Bonus Lecture | #20 MERN STACK Tutoria...
0 notes
Photo

Send us email at [email protected] #sendemail #support #closerapp #closer #datingapp #special #iwantyou #wewantyou #cipher #code #admin #meetpartners #meetagain #chatmeetdate #datingmemes #datingadvice #different https://www.instagram.com/p/BwG1BlTBrzw/?utm_source=ig_tumblr_share&igshid=1gbin6p4elm2b
#sendemail#support#closerapp#closer#datingapp#special#iwantyou#wewantyou#cipher#code#admin#meetpartners#meetagain#chatmeetdate#datingmemes#datingadvice#different
0 notes
Video
instagram
#mofbmessages #hitmeonthegram #slideinthedms #tweets #tweetme #email #emailDoxboogie #sendemail #nomessenger🚫
#tweets#sendemail#hitmeonthegram#tweetme#slideinthedms#mofbmessages#emaildoxboogie#nomessenger🚫#email
0 notes
Text
PowerShell - Export SQL Data to Excel with Powershell
PowerShell – Export SQL Data to Excel with Powershell
SQL Server Export to Excel with Powershell is very useful for all sorts of activities – ETL and reporting are some examples. This post is to Export SQL Data to Excel with Powershell.In this example, a connection is made to a SQL server Instance using DSN and then SQL output is written to a Excel worksheet. You can also do a Auto refresh of data, Open the Excel Sheet, Go to Data and click…
View On WordPress
0 notes
Text
Perl Stuff: Trouble with IO::Socket::SSL and sendEmail
Anyone who has tried to use sendEmail on debian or ubuntu in the last year or so has probably encountered this error:
invalid SSL_version specified at /usr/share/perl5/IO/Socket/SSL.pm line 332
Edit: I'm told you can just execute sendEmail with "-o tls=no" instead of removing TLSv1 from SSL_version, so feel free to disregard the rest of this post. =p
I fixed this on my old server a couple of years ago, and was dismayed to find that I needed to parse through my old `which sendEmail` to figure out how I had this working before. Fortunately, I left a comment to remind myself. <3
The problem is that SendEmail specifies SSL versions that make IO::Socket::SSL cranky.
To get sendEmail working again, simply change line 1907 (ish) in your /usr/bin/sendemail from:
if (! IO::Socket::SSL->start_SSL($SERVER, SSL_version => 'SSLv3 TLSv1')) {
to something like:
if (! IO::Socket::SSL->start_SSL($SERVER, SSL_version => 'SSLv3')) {
This worked with sendEmail 1.56-2 and libio-socket-ssl-perl 1.76-2 in Debian wheezy.
It's a shame that nobody working deb/ubuntu has noticed (despite the number of bug reports) and bothered to fix it.
PS: seems to work fine if you just omit the "TLSv1", but I used this:
if (! IO::Socket::SSL->start_SSL($SERVER, SSL_version => 'SSLv23:!SSLv2')) {
on my ubuntu (10.xx? - 12.10) machine.
PSS: I've been using this to automatically send ebooks to my father's kindle.
Obviously different mail services will require different versions of SSL. smtp.gmail.com, smtp.live.com, and the like will be fine with SSLv3.
EDIT: Apparently I posted about this when I first encountered this error.
0 notes