in reply to Re^4: PayPal IPN Script End of script output before headers:
in thread PayPal IPN Script End of script output before headers:

Consider adding else to deal with a response other than VERIFIED.

if ($res->decoded_content eq 'VERIFIED') { # send email for VERIFIED } else { # send email for INVALID or other response }
poj