The AppendToLog method adds a string to the end of the mailing log.
Mailing.AppendToLog string
The log file is named log.txt and is located in the mailing project folder.
This method may be called from any eMill script context.
Sub Mailing_OnMailStatus(Status)
For Each sReceiver in Mail.Receivers
Mailing.AppendToLog "Receiver:
" & sReceiver & " Status Code: " & Status
Next
End Sub