Developer Network

Documentação

Informações e instruções das APIs dos produtos Locaweb.

Go

Exemplo de código em Go

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package main

import (
  "log"
  "net/smtp"
)

func main() {
  // Set up authentication information.
  auth := smtp.PlainAuth(
    "",              // identity
    "meu_usuario",   //username
    "minha_senha",   //password
    "smtplw.com.br", //host
  )
  // Connect to the server, authenticate, set the sender and recipient,
  // and send the email all in one step.
  err := smtp.SendMail(
    "smtplw.com.br:587",
    auth,
    "maria@gmail.com",
    []string{"joao.dias@gmail.com"},
    []byte("This is the email body."),
  )
  if err != nil {
    log.Fatal(err)
  }
}