BATV; What is it and how is it configured?

Instantempoky28

New Member
I have tested my email server on allaboutspam.com to see why the emails are beeing considered spam by hotmail and gmail servers.The results was amongst other faults, the BATV.This is the complete result from allaboutspam.com on my BATV:BATV is a mechanism wherein an outgoing Email server adds a tag to the Envelope From address of all outgoing Emails. For example, if an Email address goes out with From address as \[code\]<[email protected]>\[/code\], the Envelope From is changed to \[code\]<[email protected]>\[/code\], where 'SBDGAUJ' is the added tag. This tag is generated using an internal mechanism and is different for each email sent.If any bounce is received by the Incoming email servers, they are checked to see if the Bounce address has the proper tag (in above case 'SBDGAUJ'). If not, the email is rejected.Could somebody explain this in simpler words... How is it configured?currently I have this setup when sending email with php:\[code\]$mail_message="text_text_text_text";$headers="MIME-Version: 1.0"."\n";$headers.="Content-type: text/plain; charset=UTF-8"."\n";$headers.="From: Skuffen <[email protected]>"."\n";$subject="SUBJECT HERE";mail($email, '=?UTF-8?B?'.base64_encode($subject).'?=', $mail_message, $headers, '[email protected]'); \[/code\]This is a swedish language so you know (utf-8)...Thanks
 
Back
Top