# Messaging first

> When you message someone before they have messaged you, and how to do it safely.

## When you need it

New-lead first touches, appointment reminders, booking confirmations: proactive messages the contact expects even though they have not texted you yet. This is most of what Beam does, and the entire pacing system exists to make it safe.

## Where the risk comes from

To the systems watching traffic, a first message to a stranger looks the same whether they opted in on your form or landed on a purchased list. Consent lives in your records, not in the network's view. That is why volume, pacing, and personalization matter so much on first touches: they are how legitimate traffic looks different from spam.

## The safe pattern

  - Reserve first touches for expected messages. A lead who filled your form two minutes ago expects you. A list from last year does not.
  - Personalize every one. Name plus context. Identical copy to hundreds of people is the classic spam signature.
  - Let the warm-up work. Beam caps new-contact volume per number per day and grows it slowly. Want more volume? Add lines, and Beam spreads new contacts across them.
  - Once they reply, you are in a conversation. Replies are unlimited and unpaced: answering people fast is what humans do.

## A real example, start to finish

Sarah fills out a medspa's Facebook lead form at 2:14pm. The CRM workflow fires the new-lead webhook:
What the CRM sends BeamCopy
```
POST https://beam.aisync.link/t/YOUR_WORKSPACE/optin?secret=...
{
  "phone": "+15551234567",
  "first_name": "Sarah",
  "contact_id": "ghl_abc123"
}
```

Beam checks her phone (blue bubble: yes), and at 2:16pm the first touch lands. Here is the whole conversation:
The conversationCopy
```
2:16pm  You:   Hey Sarah, this is Jamie from Glow Aesthetics. Saw your
               question about lip filler come through. Have you had it
               done before or would this be your first time?

2:21pm  Sarah: first time! kind of nervous lol

2:21pm  You:   ❤️ (reaction on her message)
2:22pm  You:   totally normal, most of our first-timers say the same.
               honestly the consult is the easy part, no needles, just
               a conversation. want me to grab you a spot this week?

2:25pm  Sarah: sure, what do you have?

2:26pm  You:   we've got tomorrow at 2 or thursday morning around 10,
               which works better?

2:27pm  Sarah: thursday 10 works

2:27pm  You:   perfect, you're set for thursday at 10am with Erica.
               she'll text you a reminder the day before. see you then!
```

Notice what made that work: the first touch referenced what Sarah actually did, asked one easy question, the reaction kept it warm without a wall of text, the call was framed as painless, and the booking was two concrete times, never a link. Contact tagged imessage-sent at 2:16 and bot-booked-call at 2:27, so the CRM handled the calendar and the reminder automatically.

### First-touch templates that work

Swap the specifics for your business. Every one references what the lead did, stays under 160 characters, and ends with an easy question:
Med spaHome servicesB2B / agencyCopy
```
Hey {first_name}, this is Jamie from Glow Aesthetics. Saw your
question about {service} come through. Have you had it done
before or would this be your first time?
```

```
Hey {first_name}, Mike here with Comfort Air. Got your request
about the {service}. Quick question so I send the right tech,
is this a repair or a replacement?
```

```
Hey {first_name}, James here from {company}. Saw you grabbed the
{lead_magnet}. What's the main thing you're trying to fix right now?
```

## The payoff

A first touch that lands within minutes of an opt-in, personalized, from a healthy number, is the single highest-converting message in the entire funnel. Protecting the number is what keeps that machine running.
