Free smtp

anyone who can recommend a free smtp server?
24 Replies
ἔρως
ἔρως3w ago
all email providers well, maybe not microsoft's thingy, as they seem to want to kill smtp
Kingpin
KingpinOP3w ago
I am trying out mailtrap. ig gotta figure out how to connect it with CraftCMS
ἔρως
ἔρως3w ago
make sure you're aware of all it's limits
Kingpin
KingpinOP3w ago
I just noticed that servd has a build in smtp server which is where I host my site they're using elastic email
ἔρως
ἔρως3w ago
most host companies offer some email sending services, yes
Jochem
Jochem3w ago
its generally a good idea to stick with what your host offers, if possible especially for email
ἔρως
ἔρως3w ago
yup
Faker
Faker3w ago
sorry to jump in, the smtp thing is a server that automatically sends e-mail, like when you register for something?
Jochem
Jochem3w ago
SMTP is SimpleMailTransferProtocol, the protocol used for outgoing mail and delivering mail to the destination mailserver
Choo♚𝕂𝕚𝕟𝕘
If you want to send only a few messages, you can use almost any mail server, and it won't cost anything beyond the regular cost of having the service, which is free in most cases. If you want to send mass mailings, there are no free options, and trying to do this on a free account can get you banned.
ἔρως
ἔρως3w ago
well, host companies usually let you send x amount of emails per second
vince
vince3w ago
idk if it is free but i used sendgrid when i was working with craft
ἔρως
ἔρως3w ago
it's free for a trial of 60 days, $19.95 per month after https://sendgrid.com/en-us/pricing
Kingpin
KingpinOP3w ago
How did you get it working using twig?
vince
vince3w ago
I think I used the freeform plugin
Faker
Faker3w ago
ah ok but smtp isn't a free protocol? I mean it's used each time we send a mail, no?
ἔρως
ἔρως3w ago
smtp is free, but you need a server that does the email delivery
Faker
Faker3w ago
ah ok, like a provider? I remember I once try to send mails using a python program but it was using my own mail. In this case, it would be a server using their own email sending the mails?
ἔρως
ἔρως3w ago
you need a server that receives the email sent over smtp, and then takes care of delivering the email
Faker
Faker3w ago
ah ? we send the mail to the server and server sends it back to someone? like I believed, it's sender -> someone, but here it's our mail -> server -> destination ?
ἔρως
ἔρως3w ago
it goes like this: you > smtp server > internet
Faker
Faker3w ago
yeah I see interesting, my miss-conception was that the smtp server delivers the mail directly but we need to first deliver to the smtp server
ἔρως
ἔρως3w ago
well, it depends it can connect directly to the destination email server, or can go through a proxy it honestly doesn't matter the important is that the email gets to the mailbox and all you need is somewhere to use smtp to receive your stuff
Faker
Faker3w ago
yeah I see

Did you find this page helpful?