Giter Club home page Giter Club logo

Comments (5)

Synchro avatar Synchro commented on May 9, 2024

I've really not seen this at all - even some of the demo scripts have invalid/incomplete HTML bodies and they work fine - email really doesn't care what's in the body, it's just a bunch of characters. We need the errors you're seeing and sample code for this.

from phpmailer.

jnday avatar jnday commented on May 9, 2024

To make matters worse, I found another script of mine that's working fine without the HTML and BODY tags...

At any rate, here is the code for the specific problem I mentioned:

// send email to user for confirmation

// build message body
$body = '
<html>
<body>
client info text removed<br>
Registration Confirmation:<br><br>
___________________________________________________________________<br>
Class ID: '.$class_id.'<br>
Registered by: '.$firstname.' '.$lastname.'<br>
Email: '.$email.'<br>
<br>
Date: '.$date_display.'<br>
Class Title: '.$title.'<br>
Location: '.$location.'<br>
Class hours: '.$clock_hours.'<br>
<br>
You will receive an invitation from client info text removed. You may also receive an update with documents and a reminder with client info text removed.  Please watch your e-mail.<br>
Thanks,<br>
Name<br>
____________________________________________________________________<br>
client info text removed<br>
client info text removed<br>
client info text removed<br>
client info text removed<br>
client info text removed<br>
</body>
</html>
';

// phpMailer
$mail = new PHPMailer(true);

$mail->IsSendmail();

try {
  $mail->AddAddress($email, $full_name);
  $mail->SetFrom('[email protected]', 'xxxx');
  $mail->AddReplyTo('[email protected]', 'xxxx');
  $mail->AddBCC('[email protected]');
  $mail->AddBCC('[email protected]');
  $mail->Subject = 'client info text removed';
  $mail->MsgHTML($body);
  $mail->Send();
} catch (phpmailerException $e) {
  echo $e->errorMessage(); 
  exit();
} catch (Exception $e) {
  echo $e->getMessage(); 
  exit();
}

NOTE: When searching for solutions to this problem I came across a post on Stackoverflow that mentioned a person ONLY having problems sending when a phone number appeared in the html email message. Some of the client info I removed contained phone numbers.

from phpmailer.

Synchro avatar Synchro commented on May 9, 2024

I entered some random values for your placeholders and it all worked fine. Do you have some values that make this fail reliably? If you like you can email me (address in my profile) rather than posting here. Otherwise if you have a reproducible test case, I'd suggest running it in a debugger (PHPStorm rocks!) so you can see where it (or something else) is going astray. I'd also recommend using a fake mail server for testing. Does it also fail when sending via SMTP?

from phpmailer.

Synchro avatar Synchro commented on May 9, 2024

Can't reproduce this, closing.

from phpmailer.

Synchro avatar Synchro commented on May 9, 2024

One thing worth noting - even with exceptions enabled, PHPMailer doesn't use exceptions for everything - you should still check return values. Instead of:

$mail->send();

you should still do:

if (!$mail->send()) {
    echo 'Message could not be sent.';
    echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
    echo 'Message has been sent';
}

Or some equivalent thereof.

from phpmailer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.