Ayuda / Tutoriales

Envía mensajes desde un archivo CSV usando Go

Este artículo fue traducido automáticamente a tu idioma. Ver en inglés

Introduction

In this tutorial, you'll learn how to send messages to phone numbers stored in a CSV file using Go, the http package, and the PulpoChat API. We will read the phone numbers and messages from the CSV file, and then send them using the PulpoChat API.

This article is just a small taste of all the API features. Explore dozens of use cases and ready-to-use code examples here.

Prerequisites

Create the CSV file

Create a new file named numbers.csv in your project directory with two columns:

  1. First column: phone number in E164 format with the country prefix.
  2. Second column: text message to send to the target phone number.

The spreadsheet document should look like this:

Phone number Message body
+1234567890 👋 Welcome to {{your-business-name}}! Thanks for signing up. We are just a message away!
+1234567890 💐 Your order has been shipped. Tracking number is {{tracking-number}}. Don't hesitate to reach out to if you need help! 🤗

The equivalent spreadsheet document exported as CSV should look like this:

+1234567890,"👋 Welcome to {{your-business-name}}! Thanks for signing up. We are just a message away!"
+1234567890,"💐 Your order has been shipped. Tracking number is {{tracking-number}}. Don't hesitate to reach out to if you need help! 🤗"

You can export any Office Excel or Google Sheets document as CSV file by following these instructions:

Create a file with the code

Create a new file named send_messages.go in your project directory and add the following code:

package main

import (
    "encoding/csv"
    "fmt"
    "io"
    "net/http"
    "os"
    "strings"
)

const csvFile = "numbers.csv"

// Replace this with your PulpoChat API token
var apiToken = "ENTER API KEY HERE"

// Optionally specify the target WhatsApp device ID connected to PulpoChat
// you want to use for messages delivery (24 characters hexadecimal value)
var device = "DEVICE ID GOES HERE"

var headers = map[string]string{
    "Content-Type":  "application/json",
    "Authorization": apiToken,
}

var url = "https://api.pulpo.chat/v1/messages"

func sendMessage(phone, message string) {
    json := fmt.Sprintf(`{"phone":"%s","message":"%s","device":"%s"}`, phone, message, device)

    req, err := http.NewRequest("POST", url, strings.NewReader(json))
    if err != nil {
        fmt.Printf("Failed to create request for %s: %v\n", phone, err)
        return
    }

    for k, v := range headers {
        req.Header.Set(k, v)
    }

    resp, err := http.DefaultClient.Do(req)
    if err != nil {
        fmt.Printf("Failed to send message to %s: %v\n", phone, err)
        return
    }
    defer resp.Body.Close()

    if resp.StatusCode == http.StatusCreated {
        fmt.Printf("=> Message created: %s\n", phone)
    } else {
        fmt.Printf("Failed to create message for %s: %s\n", phone, resp.Status)
    }
}

func main() {
    file, err := os.Open(csvFile)
    if err != nil {
        fmt.Printf("Error opening CSV file: %v\n", err)
        return
    }
    defer file.Close()

    reader := csv.NewReader(file)

    for {
        record, err := reader.Read()
        if err == io.EOF {
            break
        }
        if err != nil {
            fmt.Printf("Error reading CSV file: %v\n", err)
            return
        }

        phone, message := record[0], record[1]
        sendMessage(phone, message)
    }
}
Play and run code in the cloud without installing any software in your computer. Create a free account in Replit and get started in minutes

Replace the API token

In the send_messages.go file, make sure you have defined the API token of your actual PulpoChat account:

var apiToken = "ENTER API KEY HERE"

Optionally, if you have multiple WhatsApp numbers connected in your PulpoChat account, you can specify which WhatsApp number you want to use for the messages delivery by specifying the PulpoChat unique device ID (24 characters hexadecimal value) in the following line:

var deviceID = "DEVICE ID GOES HERE"

Run the program

Before running the program, if you plan to send hundreds of messages in a row, we recommend to define a lower messages delivery speed per minute no more than 2-3 messages per minute to prevent ban issues due to anti-spam policies by WhatsApp. Learn more about best practices and how to reduce risk here.

Open a terminal in your project directory and run the following command to execute the send_messages.go script:

go run send_messages.go

If everything is set up correctly, you should see output indicating the messages have been created successfully:

=> Message created: +1234567890
=> Message created: +1234567890
=> Message created: +1234567890

Note messages will be added to your number's message delivery queue and delivered asynchronously in background over time based on your number's subscription message delivery speed per minute limit or the manually configured delivery speed you have defined in your number's settings.

Messages may take several minutes or hours, depending on how much you have created, to be effectively delivered to the target phone numbers via WhatsApp. You can monitor the progress of the messages delivery in the web panel or automatically by using webhook events.

Conclusion

In this tutorial, you learned how to send messages to phone numbers stored in a CSV file using Go language and the PulpoChat API.

You can update numbers.csv file and run the program again anytime you want to send new messages through your PulpoChat connected WhatsApp number.

You can further customize the script to handle additional columns, create different types of messages, or integrate it with your own software as needed.



¿Fue útil este artículo?

¡Gracias por tu opinión!

Artículos relacionados


Categorías

Preguntas frecuentes