[Koha-bugs] [Bug 33192] We should rename 'AutoEmailPrimaryAddress' to 'EmailFieldPrimary' for clarification

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Mon Mar 13 20:15:08 CET 2023


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33192

--- Comment #5 from Caroline Cyr La Rose <caroline.cyr-la-rose at inlibro.com> ---
1. Add primary, secondary and alternate email addresses in a patron's account
   - Primary email = primary at ...
   - Secondary email = secondary at ...
   - Email, under Alternate address = alternate at ...

2. Set EmailFieldPrimary to home (primary email)

3. In the patron's account click More > Send welcome email

4. Check the message_queue, the to_address should be primary at ...

select to_address, message_transport_type, letter_code, time_queued from
message_queue where date(time_queued) = curdate();

5. Set EmailFieldPrimary to work (secondary email)

6. Repeat steps 3 and 4, the to_address should be secondary at ...

7. Set EmailFieldPrimary to alternate

8. Repeat steps 3 and 4, the to_address should be alternate at ...

9. Set EmailFieldPrimary to cardnumber as

10. Repeat steps 3 and 4, the to_address should be the patron's cardnumber

11. Set EmailFieldPrimary to first valid

12. Repeat steps 3 and 4, the to_address should be primary at ...

13. Remove the primary email from the patron's account

14. Repeat steps 3 and 4, the to_address should be secondary at ...

15. Remove the secondary email from the patron's account

16. Repeat steps 3 and 4, the to_address should be alternate at ...

If there are no email addresses at all, the notice is not generated.

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list