Send forget password

Hello friends, any one used the service of Aws ses of amazon with scalingo? I am trying to set up email verification send and forget password. On the server side in the scanligo console or my local console on the Mac, I can see when the user creates the validated data, but I do not get any mail in the registered user’s account or as spam, and when I ask to request to forget password I get An error like the following attached in the photo in the end I leave the code that I am implementing to see if anyone can give me a help and understands my problem better.
The first image is when I register the second is when I ask to forget my password

Where are the xxxxx with the data of my mails accounts or passwords

import { Meteor } from 'meteor/meteor';
import { Email } from 'meteor/email'

if (Meteor.isServer) {
Meteor.startup(() => {
  // code to run on server at startup
process.env.MAIL_URL = 'xxxxx:xxxxx@xxxxxx:465/';
});

Accounts.emailTemplates.siteName = "Appname";
Accounts.emailTemplates.from     = "Appname <myEmail@gmail.com>";

Accounts.emailTemplates.enrollAccount.subject = function (user) {
    return "Welcome to Awesome Appname, " + user.profile.name;
};
Accounts.emailTemplates.enrollAccount.text = function (user, url) {
   return "You have been selected to participate in building a better future!"
     + " To activate your account, simply click the link below:\n\n"
     + url;
};
Accounts.emailTemplates.resetPassword.from = function () {
   // Overrides value set in Accounts.emailTemplates.from when resetting 
   return "AwesomeSite Password Reset <no-reply@xxxxxxx>";
};

Accounts.emailTemplates.verifyEmail = {
  subject() {
    return "[Appname] Verify Your Email Address";
  },
  text( user, url ) {
    let emailAddress   = user.emails[0].address,
        urlWithoutHash = url.replace( '#/', '' ),
        supportEmail   = "support@xxxx.com",
        emailBody      = `To verify your email address (${emailAddress}) visit the following link:\n\n${urlWithoutHash}\n\n If you did not request this verification, please ignore this email. If you feel something is wrong, please contact our support team: ${supportEmail}.`;

    return emailBody;
  }
};
}

Fixed incorrect url and user name