Free smtp

anyone who can recommend a free smtp server?
24 Replies
ἔρως
ἔρως4mo ago
all email providers well, maybe not microsoft's thingy, as they seem to want to kill smtp
Kingpin
KingpinOP4mo ago
I am trying out mailtrap. ig gotta figure out how to connect it with CraftCMS
ἔρως
ἔρως4mo ago
make sure you're aware of all it's limits
Kingpin
KingpinOP4mo ago
I just noticed that servd has a build in smtp server which is where I host my site they're using elastic email
ἔρως
ἔρως4mo ago
most host companies offer some email sending services, yes
Jochem
Jochem4mo ago
its generally a good idea to stick with what your host offers, if possible especially for email
ἔρως
ἔρως4mo ago
yup
Faker
Faker4mo ago
sorry to jump in, the smtp thing is a server that automatically sends e-mail, like when you register for something?
Jochem
Jochem4mo 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.
ἔρως
ἔρως4mo ago
well, host companies usually let you send x amount of emails per second
vince
vince4mo ago
idk if it is free but i used sendgrid when i was working with craft
ἔρως
ἔρως4mo ago
it's free for a trial of 60 days, $19.95 per month after https://sendgrid.com/en-us/pricing
Kingpin
KingpinOP4mo ago
How did you get it working using twig?
vince
vince4mo ago
I think I used the freeform plugin
Faker
Faker4mo ago
ah ok but smtp isn't a free protocol? I mean it's used each time we send a mail, no?
ἔρως
ἔρως4mo ago
smtp is free, but you need a server that does the email delivery
Faker
Faker4mo 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?
ἔρως
ἔρως4mo ago
you need a server that receives the email sent over smtp, and then takes care of delivering the email
Faker
Faker4mo 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 ?
ἔρως
ἔρως4mo ago
it goes like this: you > smtp server > internet
Faker
Faker4mo 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
ἔρως
ἔρως4mo 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
Faker4mo ago
yeah I see

Did you find this page helpful?