Giter VIP home page Giter VIP logo

Comments (6)

alexcesaro avatar alexcesaro commented on July 28, 2024

You can already do it by using getSendMailFunc and implementing your own email-sending function.

But I can also add new methods so you can do something like that:

c := mailer.Connect()
defer c.Close()
for _, msg := range list {
    if err := c.Send(msg); err != nil {
        panic(err)
    }
}

Would that fits your need?

from gomail.

marcalj avatar marcalj commented on July 28, 2024

Sorry, I wasn't able to play with your library until now! :)

Yep, this would be a great addition to this package! I'll try to implement a custom email-sending function. Not sure when btw...

Thanks!!!

from gomail.

codepushr avatar codepushr commented on July 28, 2024

+1

from gomail.

alexcesaro avatar alexcesaro commented on July 28, 2024

I will do it for Gomail v2 (which should be released in August as Go 1.5). In the meantime you can already do it by implementing your own email-sending function and using SetSendMail.

from gomail.

alexcesaro avatar alexcesaro commented on July 28, 2024

Gomail v2 will handle sending many mails on one connection. You can already try the unstable version and tell me if it is fine:

package main

import (
    "fmt"

    "gopkg.in/gomail.v2-unstable"
)

func main() {
    messages := make([]*gomail.Message, 10)
    for i := 0; i < len(messages); i++ {
        m := gomail.NewMessage()
        m.SetHeader("From", "[email protected]")
        m.SetHeader("To", "[email protected]")
        m.SetHeader("Subject", fmt.Sprintf("Test %d", i))
        m.SetBody("text/html", fmt.Sprintf("Test %d", i))
        messages[i] = m
    }

    d := gomail.NewPlainDialer("smtp.example.com", "user", "123456", 587)
    if err := d.DialAndSend(messages...); err != nil {
        panic(err)
    }
}

from gomail.

codepushr avatar codepushr commented on July 28, 2024

Awesome! ๐Ÿ‘

from gomail.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.