sendInvitedRegisterEmail
Overview (Not yet operational)
This mutation sends to an user after an account is created from an invitation email they sent.
Special Considerations
- Requires the email address of both the invitee and the inviter.
- Can also take the names of the invitee and the inviter.
Inputs
MutationSendInvitedRegisterEmailArgs
Required Data
notifiedEmail: string notifiedName: string (Optional) invitedEmail: string invitedName: string (Optional)
Returns
Promise<SuccessResult>
A promise containing a success message.
Example
Running this mutation:
mutation {
sendInvitedRegisterEmail(data: {
invitedName: "Test 1",
invitedEmail: "test@getborderless.com",
notifiedName: "Test 2",
notifiedEmail: "test2@getborderless.com"
}) {
message
}
}
Gives us:
{
"data": {
"sendInvitedRegisterEmail": {
"message": "Email sent!"
}
}
}
Common Errors
When running this mutation some of the common errors encountered include:
- Error sending invite register email: ... (E-7102)
- Issue with sending the email. Check details and try again.