Send an email using telnet from remote servers
The below mentioned steps are used to send an email from remote servers. +Â First thing, we will need to convert our login credentials into base64. We can convert by using the following perl scripts. ======= $ perl -MMIME::Base64 -e ‘print encode_base64(“test\@domainname”)’ $ perl -MMIME::Base64 -e ‘print encode_base64(“password”)’ ======= … Continue Reading Send an email using telnet from remote servers