I think what you really want is not to use telnet, but to connect to a 
mailserver on port 25.  To establish a TCP connection in Go, you should use 
net.Dial. See: https://pkg.go.dev/net

If you actually want to send mail, there are higher level approaches which 
will take care of a lot of the details for you, for 
example: https://pkg.go.dev/net/smtp

On Wednesday, 2 November 2022 at 17:37:28 UTC Postgres Hero wrote:

> Hi All,
>
> I am naive in Golang :), so please forgive me if my question seems silly.
>
> I am trying to achieve the following telnet command in Go, but in vain. 
>
> "*telnet mx mydomain.com <http://mydomain.com> 25*"
>
> I found a package here – github.com/reiver/go-telnet. However, I could 
> not find a way to execute the aforementioned command.
>
> Could someone shed some light on this? 
>
> Thanks in advance.
>

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/86622fe1-237e-4075-b463-e7371062542fn%40googlegroups.com.

Reply via email to