Iptable command to block incoming smtp connections to a particular domain.

iptables -I INPUT -p tcp --dport 25 -m string --string "@domianname"
--algo bm -j DROP

for example

iptables -I INPUT -p tcp --dport 25 -m string --string "@example.com"
--algo bm -j DROP