W ramach ćwiczenia próbuję wyświetlić listę wszystkich wiadomości e-mail użytkowników z mojej bazy danych na jednej stronie. Jak dotąd najbliżej jest
$user = mage::getModel('customer/customer')->getCollection()->getData();
zwroty
array
0 =>
array
'entity_id' => string '1' (length=1)
'entity_type_id' => string '1' (length=1)
'attribute_set_id' => string '0' (length=1)
'website_id' => string '1' (length=1)
'email' => string 'john.doe@example.com' (length=20)
'group_id' => string '1' (length=1)
'increment_id' => string '000000001' (length=9)
'store_id' => string '1' (length=1)
'created_at' => string '2007-08-30 23:23:13' (length=19)
'updated_at' => string '2008-08-08 12:28:24' (length=19)
'is_active' => string '1' (length=1)
'disable_auto_group_change' => string '0' (length=1)
1 =>
array
'entity_id' => string '2' (length=1)
'entity_type_id' => string '1' (length=1)
'attribute_set_id' => string '0' (length=1)
'website_id' => string '1' (length=1)
'email' => string 'tony09uk@gmail.com' (length=18)
'group_id' => string '1' (length=1)
'increment_id' => null
'store_id' => string '1' (length=1)
'created_at' => string '2013-07-19 14:31:00' (length=19)
'updated_at' => string '2013-07-19 14:31:00' (length=19)
'is_active' => string '1' (length=1)
'disable_auto_group_change' => string '0' (length=1)
ale chcę tylko, aby ich e-maile były wymienione. Próbowałem magicznych pobieraczy i seterów, ale nie powiem (a przynajmniej nie tak, jak ich użyłem). Próbowałem też
$user = mage::getModel('customer/customer')->getCollection()->load();
i
$user = mage::getModel('customer/customer')->getCollection()
->addAttributeToSort('email', 'ASC');
i
$user = mage::getModel('customer/customer')->getCollection()->getEmail()->getData();
i
$user = mage::getModel('customer/customer')->getCollection()->getData();
echo $user->getEmail();
a także kilka innych odmian, teraz doszedłem do tego, że losowo wpisuję polecenia w nadziei, że zadziałają, czego nie lubię robić.
Jak wyświetlić wiadomość e-mail dla wszystkich moich użytkowników? (Mam nadzieję, że nie jestem daleko od celu)