
Connect your business directory, sync contacts from Google Sheets, and send secure campaigns directly through Simply Send's high-speed delivery pipeline.
Requires a Google Workspace Business Standard, Business Plus, or Enterprise license. Contact support if you need help with configuration.
Deploy to your entire domain. Setup requires no developer overhead.
Find on Marketplace
Domain-Wide Consent
Link Simply Send
Sync & Start Sending
Deliver secure transactional messages and manage marketing campaigns using your existing domain authority and authentication system.
Install once as a Workspace administrator. Authorize the application globally for your selected user groups or organizational units.
Allow your team to log in using standard Google accounts. No separate passwords, database records, or access credentials required.
Automatically sync contact rosters or marketing leads directly from Google Sheets. Push campaign click-through stats to sheets dynamically.
Review subscriber lists and template statistics directly inside the Gmail sidebar. Send quick transactional responses using Simply Send.
Automatically segment and forward new leads captured via Google Forms to your customized Simply Send subscription audiences.
Ensure complete safety. Simply Send requests granular read/write access strictly for the directories and assets you authorize.
Connect your spreadsheets directly to the Simply Send API. Sync new contacts from sheets automatically and trigger customized drip emails in seconds.
// 1 Initialize SimplySend Web Setup client
const { SimplySendWebSetupClient } = require("simplysend");
const simply = new SimplySendWebSetupClient({
accountId: process.env.SIMPLY_SEND_ACCOUNT_ID,
apiKey: process.env.SIMPLY_SEND_API_KEY
});
// 2 Read contacts from Google Sheets and sync to SimplySend
const syncContactsFromSheet = async (sheetsClient, spreadsheetId) => {
const response = await sheetsClient.spreadsheets.values.get({
spreadsheetId,
range: "Sheet1!A2:C"
});
const rows = response.data.values || [];
for (const row of rows) {
const [email, firstName, lastName] = row;
// Add subscriber to your target group
await simply.subscribers.add("group_9a8f7c6b5d4e", {
email,
firstName,
lastName,
consentMethod: "single_opt_in",
consentProof: "Synced from Google Sheets Workspace integration"
});
}
console.log(`Successfully synced ${rows.length} contacts!`);
};Connect Simply Send directly to your Google Workspace Directory. Automatically import staff lists, team distribution directories, and department groups to streamline transactional notifications.
Connect Simply Send seamlessly with your favorite productivity, storage, and identity applications.
Understand the benefits of opting for the Workspace Marketplace offer.
Unlock frictionless domain installation, spreadsheet syncing, and secure Google SSO. Up and running in minutes.