SmtpFinishingJob Event
Occurs when the component is about to finish a job of sending an individual e-mail message or a mail merge series.

Namespace: MailBee.SmtpMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public event SmtpFinishingJobEventHandler FinishingJob

Value

Type: MailBee.SmtpMailSmtpFinishingJobEventHandler
Remarks

This event takes place after the job was finished and MailBee needs to know what to do with the finished job next. Usually, you have two choices: to keep the finished job in JobsSuccessful or JobsFailed collection where you can examine the results of bulk mail operation after it completes, or you can opt to destroy the job in case if you send many messages and need to keep memory usage small.

Unlike events like MessageSent, this event occurs in all cases: when the message was sent, not sent, or submitted to the pickup folder.

See Also