Currently im using phpmailer and using AddEmbeddedImage. This web is using different data source from two server. http://10.99.09.1/ and http://10.99.99.2 this example. SO current my web is hosted under http://10.99.99.2 and all script is run from http://10.99.99.2 mean while when i using phpmailer and try to call the images from server http://10.99.99.1 it doesnt work
$imagescontent='http://10.99.09.1/port/upload/file/'.$line["fil_id"].'.png';
$mail->AddEmbeddedImage($imagescontent, "my-attach", $imagescontent);
but when i try to fetch the images from the same server when the script is hosted its works. Any idea to make this things works where i can fetch the images from other server