Email Finder

The company email finder is the easiest solution to find people working in any company and look up their professional email addresses.
@

Enter First Name, Last Name and Domain to find email address.

Email can't be empty!

Verify email,easily⚡

Bounces, spam complaints, spam traps and bots – they all wreak havoc on your email marketing. Let our email validator remove them from your list, so you can reconnect with your subscribers and boost your click rates.
Enter the email you want to receive verification results.

Email can't be empty!

Use Sendpalm with API

Use curl to get the verification result in the terminal.

Make sure you have the prerequisites

You will need access to the command line. Are you a PC user? Download cURL here

Get an AUTH_TOKEN

This allows your application to authenticate to our API. You can get it on the API page.

Verify email

                
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

Finder name

                
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

Finder domain

                
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.

Make sure you have the prerequisites

Our library requires Node.js version 0.10, 0.12, or 4.

Get an AUTH_TOKEN

This allows your application to authenticate to our API. You can get it on the API page.

Install the package

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

Contact Us

Address

2472 SHIELD DR,
UNION CITY, CA 94587

Email Us

service@sendpalm.com
edwinhao@sendpalm.com