Matt Mc

Results 149 comments of Matt Mc

> @tooolbox this looks really nice. I am excited! 🎉 🎉 > If it's going to be easier for you, you can continue with Typescript and React and Material UI...

> @tooolbox what's your use case with Dalga? How do you plan to use it? About the same as you, automated actions, all controlled programatically. It's more a point of,...

Okay great, that makes sense. I will see where the wind blows me but I think I will get around to it in the near future. I'm not totally settled...

Hm, okay. Seems like the shell checks could be done somewhat like this: ``` go package main import( "fmt" "os/exec" ) func main(){ c := exec.Command("cmd", "/C", "del", "D:\\a.txt") if...

1. Okay, so `sendmail` is a CLI interface to Postfix, I get it. 2. I confess ignorance when it comes to many Windows things, so I'll trust you on the...

Sorry, I think I was thinking of [gomail](https://github.com/go-gomail/gomail) but, in any case, it's just API differences. Would you rather do [this](https://godoc.org/gopkg.in/gomail.v2#example-package)-ish with gomail: ``` go m := gomail.NewMessage() m.SetHeader("From", "[email protected]")...

One note is that if you email within Go it is more flexible (you don't need a local postfix install, you can use whatever mail server is available) but you...

Great progress! Agreed on the env. variables. I will try to write the SMTP code today or tomorrow. To be clear, this will become the default for mail-sending from jsonmon,...

I would like this feature as well. Probably need to fork and add it elsewise :)