PowerShell
PowerShell
Transition from Email.CreateDsn to Email.ToDsn
Provides instructions for replacing deprecated CreateDsn method calls with ToDsn.Chilkat PowerShell Downloads
Add-Type -Path "C:\chilkat\ChilkatDotNet47-x64\ChilkatDotNet47.dll"
$success = $false
$email = New-Object Chilkat.Email
# ...
# ...
$explanation = "..."
$statusFieldsXml = "..."
$headerOnly = $false
# ------------------------------------------------------------------------
# The CreateDsn method is deprecated:
$emailObj = $email.CreateDsn($explanation,$statusFieldsXml,$headerOnly)
if ($email.LastMethodSuccess -eq $false) {
$($email.LastErrorText)
exit
}
# ...
# ...
# ------------------------------------------------------------------------
# Do the equivalent using ToDsn.
# Your application creates a new, empty Email object which is passed
# in the last argument and filled upon success.
$dsnEmail = New-Object Chilkat.Email
$success = $email.ToDsn($explanation,$statusFieldsXml,$headerOnly,$dsnEmail)
if ($success -eq $false) {
$($email.LastErrorText)
exit
}