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

[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

About this issue

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

Most upvoted comments

@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

@dackers86 thank you for your advice, my email provider has helped me, they suggested to change smtps be smtp. Actually it little bit weird because, in input placeholder (in Firebase) says smtps. At least error status has gone. it SUCCESS, but why i didn’t receive any email yet? there something i missing? Screen Shot 2021-02-03 at 21 57 37

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();