Finding emails of Hiring Managers from LinkedIn

ยท

2 min read

In this digital age, Google has become our go-to search engine for finding information on the web. But did you know that you can customize your Google search settings to enhance your search experience? In this blog post, we'll walk you through the process of accessing and modifying your search settings on Google, along with some additional tips and tricks to optimize your search results.

Step 1: Accessing Google Search Settings To begin customizing your search experience, follow these simple steps:

  1. Open your web browser and go to the Google homepage.

  2. Click on the "Settings" option located at the bottom-right corner of the page.

  3. From the dropdown menu, select "Search Settings."

Step 2: Modifying Result Page Display Once you've accessed the search settings, you can adjust the number of results displayed per page. Here's how:

  1. Look for the "Results per page" option.

  2. Click on the dropdown menu and select your desired number of results per page. Choosing a higher value, such as 100, allows you to view more results at once.

Step 3: Exploring "recruitein.net" Google offers various search operators and shortcuts to refine your search queries. One interesting operator is "site:" which allows you to search within a specific website or domain. For example, to search for job opportunities on the website "recruite.ney," simply type "site:recruite.ney" followed by your desired keywords.

Step 4: Utilizing Email Checker Tools Email checkers can be helpful for verifying the validity and deliverability of email addresses. However, it's important to note that collecting email addresses without proper consent violates privacy rules and terms of service. Always obtain explicit permission before collecting or using someone's email address.

By using this tools you can create email sender

npm install nodemailer
const nodemailer = require('nodemailer');

// Create a transporter object using your email service provider's SMTP settings
const transporter = nodemailer.createTransport({
  service: 'your_email_service_provider',
  auth: {
    user: 'your_email@example.com',
    pass: 'your_email_password'
  }
});
const message = {
  from: 'your_email@example.com',
  subject: 'Subject of the email',
  text: 'Body of the email'
};
const jsonData = [
  { email: 'email1@example.com' },
  { email: 'email2@example.com' },
  // Add more email objects as needed
];

const emailList = jsonData.map(obj => obj.email);
emailList.forEach(email => {
  // Update the 'to' property of the message object
  message.to = email;

  // Send the email
  transporter.sendMail(message, (error, info) => {
    if (error) {
      console.error('Error:', error);
    } else {
      console.log('Email sent:', info.response);
    }
  });
});
ย