dadamssg87 Posted November 26, 2011 Share Posted November 26, 2011 I've noticed you can send emails with PHP coming from any email address. So it seems like i could spam a ton of people with email addresses with "donaldtrump@trump.com" or something like that. I understand emails are trackable so i'm sure i would get in trouble if i spammed enough people. I was wondering though if theres any issue with sending emails for your app users? For example, say i come up with a service to design and send emails. My user would customize a template and enter some text and then enter the email address they want to send from and the email addresses they want the email sent to. So pretty much like mailchimp. Would i run into any problems with sending emails "from" email addresses i don't own, technically or legally? Quote Link to comment https://forums.phpfreaks.com/topic/251861-sending-emails-from-addresses-i-dont-own/ Share on other sites More sharing options...
scootstah Posted December 1, 2011 Share Posted December 1, 2011 The "from" is just a header and doesn't mean much. You can still see where the email actually came from. With that said, I don't think you should make the "from" another user's email address. Maybe make the reply-to their email address. Make the from something like "no-reply@domain" or something. Quote Link to comment https://forums.phpfreaks.com/topic/251861-sending-emails-from-addresses-i-dont-own/#findComment-1292902 Share on other sites More sharing options...
gizmola Posted December 7, 2011 Share Posted December 7, 2011 I've noticed you can send emails with PHP coming from any email address. So it seems like i could spam a ton of people with email addresses with "donaldtrump@trump.com" or something like that. I understand emails are trackable so i'm sure i would get in trouble if i spammed enough people. I was wondering though if theres any issue with sending emails for your app users? For example, say i come up with a service to design and send emails. My user would customize a template and enter some text and then enter the email address they want to send from and the email addresses they want the email sent to. So pretty much like mailchimp. Would i run into any problems with sending emails "from" email addresses i don't own, technically or legally? This is the nature of email-- all the fields can be spoofed. With that said, spoofing the from address will earn you points against from spam detection engines, and may cause you to end up on an RBL. It also is the type of feature that can be exploited by spammers. Quote Link to comment https://forums.phpfreaks.com/topic/251861-sending-emails-from-addresses-i-dont-own/#findComment-1295107 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.