need to send mail using attachment and password encryption

Hi Experts,

I am facing issue with by below playbook on 2 scenarios

  1. How to send mails using ansible without defining the password of the account. using SMTP username and password now in the play to send mail. but is there any alternate way to avoid specifying password or using the encryption for password.

`

  • name: Send email
    mail:
    host: smtpserver.com
    port: 25
    username: mydomainID
    password: mypass
    attach: /opt/IBM/605CLM/JazzTeamserver/server/liberty/servers/clm/logs/jts.log
    body: “Testing email”
    to:
  • mymailid.com
    charset: utf8
    secure: never
    `
  1. Lokking for a way to attach the log file in the mail after starting the application. but it failing… any advise please.