Skip to main content

Send Parent Verification Email (ComplianceSendEmail)

AndroidiOSWindows
If you're using the Unity engine, see the ComplianceSendEmail for Unity SDK.

In high-risk areas (such as Korea), a verification email must be sent to parents or legal guardians before minors can enter the game.

After receiving the authorization email, the parents or legal guardians of the minor can read the email on a computer or phone and provide or refuse consent according to the instructions in the email.Minors can only start the game once they have received parental consent.

Function Definition

UFUNCTION(BlueprintCallable, Category = "INTLSDKAPI")
static void ComplianceSendEmail(
const FString Email,
const FString UserName);

Parameter Details

ParametersTypeExplanation
EmailFStringTarget email address
UserNameFStringEmail salutation

Callback processing

The callback processing interface is ComplianceResultObserver.The callback data structure is ComplianceResult.

The callback ID is kMethodIDComplianceSendEmail.

Code example

FString email = "xxx@xxx.com";
FString userName = "intl";
UINTLSDKAPI::ComplianceSendEmail(email, userName);