klyn.mails.Authenticator.requestPasswordAuthentication
method
public requestPasswordAuthentication(session as Session) as PasswordAuthentication:
DescriptionResolves SMTP credentials for the provided session.
Override this method in subclasses.
import klyn.mails
auth = Authenticator()
print(auth.requestPasswordAuthentication(null) == null)
ReturnsCredentials or `null` when the session should stay anonymous. ```klyn import klyn.mails auth = Authenticator() print(auth.requestPasswordAuthentication(null) == null) ```