Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed ability to add email-fwdr here's my code if anyone wants to add an email request validation: ```python cf = CloudFlare(email=CLOUDFLARE_EMAIL, token=CLOUDFLARE_TOKEN) cf.add('VOID', "accounts", "email-fwdr") cf.add('AUTH', "accounts", "email-fwdr", "addresses") data = json.dumps({"email": email}) cf.accounts.email_fwdr.addresses.post(CLOUDFLARE_ACCOUNT, data=data) ```
- Loading branch information