Jump to content

petrovitch

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

petrovitch's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. They are blank.
  2. It's not in the code -- is't something missing. I'm on a Linux server, and it is sending the email correctly BUT IT IS ALSO SENDING A COPY TO THE SENDER. This is a big problem. Please help. All input information is being extracted from files using regex. The input data is correct. $email = new phpmailer(); $email->Host = EMAIL_HOST; $email->Mailer = "smtp"; $email->From = $from; $email->FromName = $sender; $email->AddAddress($to); $email->Subject = $subject; $email->isHTML($isHTML); $email->Body = $htmlBody; $email->AddCC($cc); $email->AddBCC($bcc); $email->AddReplyTo($replyTo); for ($i = 0; $i < sizeof($attachments); $i++) { $email->AddAttachment($attachments[$i]); } $email->SingleTo = true; $email->IsSendmail(); $email->Send(); $email->ClearAddresses(); $email->ClearAttachments();
  3. PHP Mailer is sending a copy to the sender also. How do I stop this?
  4. How can I save an image created on-the-fly on the server? For example, $img = "<img src=ChessImager/ChessImager.php?ds_color=(176,144,112)&ls_color=(224,200,160)&coordinates=on&square_size=$square_size&fen=" . urlencode($fen) . ">"; I can display the diagram, but I want to save these images with PHP.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.