ComplianceSendEmail
AndroidiOSWindows
If you were looking for the method for use with Unreal Engine, see ComplianceSendEmail for Unreal Engine SDK.
If you were looking for the method for use with Unreal Engine, see ComplianceSendEmail for Unreal Engine SDK.
In high-risk regions (such as South Korea), games must send authorization emails to the parents or legal guardians of minors before they can enter the game.
After receiving the authorization email, the parent or legal guardian of the minor can read it on a computer or mobile phone, and follow the instructions in the email to provide or withhold consent. The minor can only start playing the game after parental consent has been received.
Function definition
public static void ComplianceSendEmail(string email, string userName);
Input parameters
Parameter | Type | Description |
---|---|---|
string | Destination email address | |
userName | string | Name of email sender |
Observers
The callback processing interface is ComplianceResultObserver. The callback data structure is ComplianceResult.
The callback methodID is INTL_COMPLIANCE_SEND_EMAIL
.
Code sample
string email = "xxx@xxx.com";
string userName = "intl";
INTLAPI.ComplianceSendEmail(email, userName);