> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# PFAccountManagementSendAccountRecoveryEmailRequest

> PFAccountManagementSendAccountRecoveryEmailRequest data model for sending an account recovery email to PlayFab accounts that have a valid email address.

PFAccountManagementSendAccountRecoveryEmailRequest data model. If the account in question is a "temporary" account (for example, one that was created via a call to LoginFromIOSDeviceID), thisfunction will have no effect. Only PlayFab accounts which have valid email addresses will be able to receive a password reset email using this API.

## Syntax

```cpp theme={null}
typedef struct PFAccountManagementSendAccountRecoveryEmailRequest {  
    PFStringDictionaryEntry const* customTags;  
    uint32_t customTagsCount;  
    const char* email;  
    const char* emailTemplateId;  
    const char* titleId;  
} PFAccountManagementSendAccountRecoveryEmailRequest;  
```

### Members

**`customTags`**   [PFStringDictionaryEntry](/services/playfab/api-references/c/pftypes/structs/pfstringdictionaryentry) const\*<br />*may be nullptr*

(Optional) The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.).

**`customTagsCount`**   uint32\_t

Count of customTags

**`email`**   const char\*<br />*is null-terminated*

User email address attached to their account.

**`emailTemplateId`**   const char\*<br />*is null-terminated*

(Optional) The email template id of the account recovery email template to send.

**`titleId`**   const char\*<br />*is null-terminated*

Unique identifier for the title, found in the Settings> Game Properties section of the PlayFab developer site when a title has been selected.

## Requirements

**Header:** PFAccountManagementTypes.h

## See also

[PFAccountManagementTypes members](/services/playfab/api-references/c/pfaccountmanagementtypes/pfaccountmanagementtypes_members)
