I have created an php mail script, And in the message of the mail i sent i am using many variables (data). For example i want to sent an mail with this body msg:
Name: Somename
Email: [email protected]
City: Somecity
State: somestate
.........
What i am doing is this:
$msg = "Name: $name (brake) Email: $email (brake)......"
this message is not working in major emails like gmail, hotmail, yahoo... I get the mail with html tags and i dont want that.
There must be some other way to do this so my mail structure looks good on every email account ?