Click or drag to resize
SubscriberInfoProviderApproveSubscription Method (String, Boolean, String, DateTime)
Approves existing subscription - sets SubscriptionApproved to true and SubscriptionApprovedWhen to current time. Checks if subscription wasn't already approved. Confirmation e-mail may be sent optionally.

Namespace: CMS.Newsletters
Assembly: CMS.Newsletters (in CMS.Newsletters.dll) Version: 8.2.23
Syntax
C#
public static SubscriberInfoProviderApprovalResult ApproveSubscription(
	string subscriptionHash,
	bool sendConfirmationEmail,
	string siteName,
	DateTime datetime
)

Parameters

subscriptionHash
Type: SystemString
Hash parameter representing specific subscription
sendConfirmationEmail
Type: SystemBoolean
Indicates if confirmation e-mail should be sent. Confirmation e-mail may also be sent if newsletter settings requires so
siteName
Type: SystemString
Site name.
datetime
Type: SystemDateTime
Date and time of request.

Return Value

Type: SubscriberInfoProviderApprovalResult
Returns TRUE if subscription found and not already approved. Returns FALSE if subscription not found or already approved.
See Also