1
You’re doing some bizarre unnecessary things in your loop. user
is already the relevant instance of EmailSubscriber; it already has first_name
and email
attributes. You don’t need to set them, you just use them.
Source:stackexchange.com
1
You’re doing some bizarre unnecessary things in your loop. user
is already the relevant instance of EmailSubscriber; it already has first_name
and email
attributes. You don’t need to set them, you just use them.