Jump to content

Php Mail

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
4 replies to this topic

#1
Guest_Jaan_*

Guest_Jaan_*
  • Guests
Hey..

umm.. try to send one email.. and this mail part is this:

@mail($admin_email, $subject, $description, "From: AdStar - Ad Management Panel");


umm.. but those breaks between those words "AdStar - Ad Management Panel" don't work..

in email this sentence will be

"AdStar-AdManagementPanel"

This " " don't work also.. so maybe someone can help me.. how to make those breaks..

#2
Guest_Jordan_*

Guest_Jordan_*
  • Guests
Try to declare your headers outside of the function call. IE:

$headers = 'From: AdStar - Ad Management Panel <no@email.com>' . "\r\n";


@mail($admin_email, $subject, $description, $headers);  


#3
lowrider.v.7.0

lowrider.v.7.0

    Newbie

  • Members
  • PipPip
  • 22 posts
yes exactly or else try %20 might work....

#4
Guest_Jaan_*

Guest_Jaan_*
  • Guests
awesome.. thank you :)

#5
TcM

TcM

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 11,147 posts
Any explanation why that happens? Maybe John might have an answer...