phpList / phplist3

Fully functional Open Source email marketing manager for creating, sending, integrating, and analysing email campaigns and newsletters.
https://www.phplist.org
GNU Affero General Public License v3.0
752 stars 269 forks source link

Default FROM address is not considered #871

Closed tobelix87 closed 2 years ago

tobelix87 commented 2 years ago

I set via admin panel the default sender address of a campaign. This is also shown in database table config in field _campaignfromdefault. For me it is working fine. When I create a new campaign, the default email address is shown in the From Line field. But I have a second admin account. For this user it always takes the email address which is linked with the admin account. Why is the default address not taken?

michield commented 2 years ago

You can define that behaviour with USE_ADMIN_DETAILS_FOR_MESSAGES

https://github.com/phpList/phplist3/blob/master/public_html/lists/admin/send_core.php#L660

https://resources.phplist.com/system/config/use_admin_details_for_messages

Basically, when you have multiple administrators, phpList assumes that everyone will want to send as them, and not as the centrally defined FROM. But you can switch that off if you want it working differently.

tobelix87 commented 2 years ago

that worked. didnt see that config parameter. Many thanks!