I use CUPS on an intranet website. I don't specify a tray and my code is ruby, but the principle definitely works.
Here's my code, see if you can adapt it for your scenario
def print(path)
raise ArgumentError, "'#{path}' does not exist" unless File.file?(path)
`lp -s -d printer_name -h 127.0.0.1 -o page-ranges=1-4 -o media=A4,Upper #{path}`
$?.to_i == 0 ? true : false
end
The basic idea is to generate the PDF, save it to disk then call this method to shell out to CUPS. You might need to play with the media option to get it doing what you need. 'Upper' is the tray you're targeting.
Make sure path is sanitised before being passed to this method or you risk opening a security hole.