I'm falling back from SwiftMailer to PHPMailer.
In SwiftMailer, whenever you want to incorporate images into your HTML emails, you must insert the following line of code for each image within an instantiated Swift_Message object:
$email_msg->embed( Swift_Image::fromPath( $image_path ) );
Do I need to do something similar in PHPMailer? If so, how do I do it?
I cannot find anything in the documentation addressing this issue.
Thanks!