question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[Trigger Email] SSL routines:ssl3_get_record:wrong version number

See original GitHub issue

[READ] Step 1: Are you in the right place?

Yup

[REQUIRED] Step 2: Describe your configuration

  • Extension name: firestore-send-email
  • Extension version: 0.1.7
  • Configuration values (redact info where appropriate):
    • _
    • _

[REQUIRED] Step 3: Describe the problem

Steps to reproduce:

I just upgrade into blaze and trying to use Trigger Email, but am stuck with Error where i can produce manually input data in firestore inside mail folder. What error said like so:

Error: 68919280695104:error:1408F10B:SSL routines:ssl3_get_record:wrong version number:../deps/openssl/openssl/ssl/record/ssl3_record.c:332:

Screen Shot 2021-02-01 at 19 12 33

anyone can explain to me what happen with this?

Expected result
Actual result

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:15 (8 by maintainers)

github_iconTop GitHub Comments

1reaction
superdiazzzcommented, Feb 5, 2021

@dackers86 you 're right, my provider needs validation from the sender Email, now i keep in touch with him about this. i think my problem has been solved. thank you very much

1reaction
russellwheatleycommented, Feb 2, 2021

Hey @superdiazzz, have you successfully sent an email using your configuration yet? Here’s a scratch pad for you to run via nodejs:

//remember to install nodemailer first 
const nodemailer = require("nodemailer");

async function sendEmail() {
  let transporter = nodemailer.createTransport(
    "INSERT YOUR SMTP URI STRING HERE"
  );

  await transporter.sendMail({
    from: `fake@email.com`, // anything
    to: "fake@email.com", // your email address
    subject: "Hello", // Subject line
    text: "test email", // plain text body
  });
}

sendEmail();

Read more comments on GitHub >

github_iconTop Results From Across the Web

How to start using Node-RED - Stackhero
Node-RED: Error "SSL routines:ssl3_get_record:wrong version number:. ... If you get this error when you send an email, this is probably because you have ......
Read more >
i get 'SSL routines', 'ssl3_get_record', 'wrong version number ...
when i send post request to daemon server using curl it shows below. [Faulure instance: Traceback (failure with no frames): <class ...
Read more >
How to Setup O365 as the SMTP Mailer for GHost - AYRN
Failed to send email. Reason: routines:ssl3 get record:wrong version number [blah, blah, blah]. According to the documentation, setting the ...
Read more >
SMTP fail to send email due to SSL wrong version number
Hello, I'm trying to configure SMTP on standalone Omnibus Gitlab. But when I try to send an email from the gitlab-rails console I...
Read more >
Squirrelmail not Sending "Can't open SMTP stream"
(I assume that you too have configured smtp on port 25 to optionally have starttls and require TLS and authentication to send or...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found