Skip to content

Instantly share code, notes, and snippets.

View syke99's full-sized avatar

Quinn Millican syke99

View GitHub Profile
@douglasmakey
douglasmakey / sender.go
Last active May 22, 2025 07:33
Golang - send an email with attachments.
package main
import (
"bytes"
"encoding/base64"
"fmt"
"io/ioutil"
"mime/multipart"
"net/smtp"
"os"