1
I really don't know if I should be asking this here or on Sourceforge so forgive me if it's in the wrong place.
I've been looking to upgrade a module to 2.3 and so I've been removing deprecated function calls, etc. When looking through 2.3 it says that XoopsMailer is (or will be shortly) deprecated. XoopsMailer now instantiates a XoopsMultiMailer class, which is fine.
My question is what's the preferred method to implement some of the functions that currently exist in XoopsMailer that aren't in the XoopsMultiMailer class? Should I:
1) continue to use XoopsMailer until a future release implements the "other" functions?
2) make a new class that extends XoopsMultiMailer that implements the functions that I need?
Thanks in advance.