Send Parent Verification Email (ComplianceSendEmail)
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
| Parameters | Type | Explanation |
|---|---|---|
| FString | Target email address | |
| UserName | FString | Email 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);