Jump to content

htmlMimeMail


jkkenzie

Recommended Posts

Which line of code changes a link from http://mysite.com/pages/home.html  TO page/home.html  from the code below??

                  $mail = new htmlMimeMail();
  $mail->setFrom('From: '.SITE_NAME.'<NoReply@'.DOMAIN_NAME.'>');
  $mail->setReturnPath('From: '.SITE_NAME.'<NoReply@'.DOMAIN_NAME.'>');
  $mail->setSubject($htmlMess['Title']);
  $mail->setHTML($htmlMessage, null, MOD_ROOT_DIR);
  $mail->buildMessage();

 

Thanks in advance

Link to comment
https://forums.phpfreaks.com/topic/208984-htmlmimemail/
Share on other sites

not sure, but I'll be honest with you, no1 will be able to give you a proper answer the code shown is very vague.. I can only give you an assumption and say that the value you're using to represent your url really isn't the full url and is just a relative path to the file '/page/home.html' not the absolute path which you are expecting

Link to comment
https://forums.phpfreaks.com/topic/208984-htmlmimemail/#findComment-1091574
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.