Enter First Name, Last Name and Domain to find email address.
Use curl to get the verification result in the terminal.
You will need access to the command line. Are you a PC user? Download cURL here
This allows your application to authenticate to our API. You can get it on the API page.
curl --header "Content-Type: application/json" \ --header "authorization: AUTH_TOKEN" \ --request POST --data '{"fromEmail":"test@gmail.com","toEmail":"service@sendpalm.com"}' \ https://api.sendpalm.com/api/check_email
curl --header "Content-Type: application/json" \ --header "authorization: AUTH_TOKEN" \ --request POST --data '{"first_name":"Jane","last_name": "Doe","domain": "domain.com"}' \ https://api.sendpalm.com/api/find_mail_with_name
curl --header "Content-Type: application/json" \ --header "authorization: AUTH_TOKEN" \ --request POST --data '{"domain":"sendpalm.com"}' \ https://api.sendpalm.com/api/find_mail_with_domain
Verification email with Node.js.
Our library requires Node.js version 0.10, 0.12, or 4.
This allows your application to authenticate to our API. You can get it on the API page.
The following recommended installation requires npm. If you are unfamiliar with npm, see the npm docs. Npm comes installed with Node.js since node version 0.8.x, therefore you likely already have it:
npm install --save sendpalm
import Email from 'sendpalm' const email = new Email("AUTH_TOKEN") // verify email await email.verify(toEmail) // finder name await email.findWithName({first_name: "Jane", last_name: "Doe", domain: "domain.com"}) // finder domain await email.findWithDomain({domain: "sendpalm.com"})
Contact Us
2472 SHIELD DR,
UNION CITY, CA 94587
service@sendpalm.com
edwinhao@sendpalm.com