Skip to content

Instantly share code, notes, and snippets.

@idanblich
idanblich / Automate Customer Support with Google Forms and Salesforce Integration.md
Last active May 4, 2025 20:41
Automate Customer Support with Google Forms and Salesforce Integration.md

Streamline your customer support workflow without additional licensing costs — perfect for small businesses and teams just getting started with Salesforce.

The Problem: Customer Support at Scale

For small to medium-sized businesses using Salesforce, managing customer support inquiries can be challenging. Commercial solutions often come with hefty price tags, and custom development requires specialized knowledge.

What if you could leverage tools you already have — specifically Google Forms and Salesforce — to create a streamlined support system?

The Solution: Google Forms + Salesforce Web-to-Case

@idanblich
idanblich / tasks.code-snippets
Last active February 24, 2019 08:06
Global snippet for VSCode , to create open VF page and Lightning App
{
"Create tasks": {
"prefix": "tasks.json",
"body": [
"{",
" \"version\": \"2.0.0\",",
" \"tasks\": [",
" {",
" \"label\": \"SFDX: Open Visualforce Page\",",
" \"type\": \"shell\",",
{
"version": "2.0.0",
"tasks": [
{
"label": "SFDX: Open Visualforce Page",
"type": "shell",
"command": "sfdx",
"args": [
"force:org:open",
"--path",
@idanblich
idanblich / Salesforce_Box_comWebhookintegratio30lines.cls
Last active January 16, 2019 05:57
Salesforce-Box.com Webhook integration ~30 lines
@RestResource(urlMapping='/BoxRestAPI/V1/*')
global class BoxRest {
@HttpPost
global static void postItems () {
RestRequest req = RestContext.request;
RestResponse res = RestContext.response;
System.debug('[ Post req --> ]' + JSON.serializePretty( req ) ) ;