sendmail with subdomains

On a machine IP registered domain with multiple subdomains example.com and *.example.com:

Code:
*    2560    CNAME    example.com    
*.example.com    2560    MX    10 123.123.123.123    
example.com    2560    MX    10 123.123.123.123    
2560    A    123.123.123.123

I've got multiple sites on it and I want sendmail (or PHP) to send emails from multiple subdomains. Like http://www.example.com, staff.example.com, shop.example.com.

Any experience or ideas?

Code:
# cat /etc/mail/aliases
www: root
shop: root
mail: root &.e.t.c.
 
Back
Top