I am sending emails in a program like so:
Call Shell(smtpPath, emailInput...)
This works great, except if I call the function twice, the fu
You could use WScript.Shell, and it's run method:
Set objShell = CreateObject("WScript.Shell") result = objShell.Run(smtpPath & " " & emailInput, 0, true)