Class EmailInfoUtils
- Namespace
- CMS.EmailEngine
- Assembly
- CMS.EmailEngine.dll
Contains utility methods for EmailInfo management.
public static class EmailInfoUtils
- Inheritance
-
objectEmailInfoUtils
Methods
BindAttachment(int, string, string, string, int, byte[], string, Guid, DateTime)
Add attachment to specified e-mail and return its ID.
public static int BindAttachment(int emailId, string name, string extension, string mimetype, int size, byte[] binary, string contentId, Guid guid, DateTime lastModified)
Parameters
emailId
intE-mail
name
stringAttachment name
extension
stringAttachment extension
mimetype
stringAttachment type
size
intSize of the attachment
binary
byte[]Binary data
contentId
stringAttachment content ID
guid
GuidAttachment GUID
lastModified
DateTimeLast modification date of the attachment
Returns
- int
DeleteArchived(DateTime, int)
Deletes expired archived e-mails. Size of deleted "batch" is specified by batchSize
.
public static int DeleteArchived(DateTime expirationDate, int batchSize)
Parameters
expirationDate
DateTimeEvery archived email older that expiration date will be deleted
batchSize
intNumber of emails to be deleted at once
Returns
- int
Returns number of deleted emails.
Resend(IEnumerable<int>, CancellationToken)
Re-sends e-mails specified by their IDs. If some of the specified emails are already being sent, they are NOT send again.
public static Task Resend(IEnumerable<int> ids, CancellationToken cancellationToken)
Parameters
ids
IEnumerable<int>IDs of the emails that are to be sent
cancellationToken
CancellationTokenCancellation token.
Returns
- Task