How to disable using SSL
Hey Dude,
i'm using this prog and it's fine. But i need an Option to disable to using SSL, because i'm under linux and use my own local postfix to deliver any mails intern/extern. I don't need SSL. I can't found any oparameters to disable SSL
Send-MailKitMessage -SMTPServer $SMTPServer -Port $Port -From $From -RecipientList $RecipientList -Subject $Subject -TextBody $TextBody;
Can you help me please?
I think, this project is dead
Try using "UseSecureConnectionIfAvailable" like this: Send-MailKitMessage -UseSecureConnectionIfAvailable $false -SMTPServer $SMTPServer -Port $Port -From $From -RecipientList $RecipientList -Subject $Subject -TextBody $TextBody;