You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import (
"github.com/socketlabs/socketlabs-go/injectionapi""github.com/socketlabs/socketlabs-go/injectionapi/message"
)
funcmain() {
client:=injectionapi.CreateClient(000001, "YOUR-API-KEY")
basic:= message.BasicMessage{}
basic.Subject="Sending a Basic Message"basic.HtmlBody="<html>This is the Html Body of my message.</html>"basic.PlainTextBody="This is the Plain Text Body of my message."basic.From= message.EmailAddress{EmailAddress: "from@example.com"}
basic.ReplyTo= message.EmailAddress{EmailAddress: "replyto@example.com"}
//A basic message supports up to 50 recipients and supports several different ways to add recipientsbasic.AddToEmailAddress("recipient@example.com") //Add a To address by passing the email addressbasic.AddCcEmailAddress("recipient2@example.com") //Add a CC address by passing the email address and a friendly namebasic.AddBccEmailAddress("recipient3@example.com") //Add a BCC address by passing the email address//Send the message_, _=client.SendBasic(&basic)
}
The text was updated successfully, but these errors were encountered:
BredeFK
changed the title
Have Forgotten password? send an email to the user and let the user change password
Have "Forgotten password?" send an email to the user and let the user change password
Mar 28, 2019
https://stackoverflow.com/questions/1102781/best-way-for-a-forgot-password-implementation/1102817#1102817
The text was updated successfully, but these errors were encountered: