2012-05-22 5 views
2

Ceci est probablement une solution facile, mais je suis nouveau à ce sujet. J'ai du code d'un développeur précédent et on m'a demandé de modifier le texte pour l'e-mail envoyé. J'ai essayé d'employer une étiquette de href régulière mais cela ne fonctionne pas. Existe-t-il un moyen spécifique d'ajouter une URL dans l'exemple ci-dessous? C'est la ligne Ready to get started. Le clic devrait être un lien hypertexte. Merci!!ajouter un lien URL dans une fonction

function send_info_kit(){ 
     if($_POST): 
     $to = mysql_real_escape_string($_POST['email_info']); 
     $q = "INSERT INTO rog_info_requesters(`email`) VALUES('{$to}')"; 
     $r = mysql_query($q) or die(mysql_error()); 
     print $to; 

     $from ='[email protected]'; 
     $name = 'Reaching Our Goal'; 
     $subject='Info kit you requested'; 
     $message=nl2br('Information on America’s best fundraising program for sports teams and 
     school groups is attached. 

Finally, a modern process that generates thousands of dollars in profit and 
takes just minutes to launch. 

A few reasons why www.rechingourgoal.org is the right choice: 

- Takes minutes 
- No selling  
- 80% Profits 
- Online tracking 
- We do the work 

Ready to get started now? http://www.reachingourgoal.org"Click! 

Text ROG to 9192835123. Get clued in on amazing results and success tips. 

We are helping people like you do amazing things every day. 

Reaching Our Goal 
www.ReachingOurGoal.org 
'); 
     $cc=''; 
     $bcc='[email protected],[email protected]eams.com'; 
     //$attach='http://www.reachingourgoal.org/assets/images/ReachingOurGoalInfoKit.pdf'; 
     $file = FCPATH .'/assets/images/ROGFreeInfo.pdf'; 

     if(file_exists($file)): 
     { 
      echo "File exists. Path ok: " . $file; 
     } 
     else: 
     { 
      echo "Cannot find file: " . $file; 
     } 
     endif; 
     $this->member->send_info($to,$from,$name ,$subject,$message,$cc,$bcc,$file); 
     endif; 
    } 

Répondre

2
$message=nl2br('Information on America’s best fundraising program for sports teams and 
     school groups is attached. 

Finally, a modern process that generates thousands of dollars in profit and 
takes just minutes to launch. 

A few reasons why www.rechingourgoal.org is the right choice: 

- Takes minutes 
- No selling  
- 80% Profits 
- Online tracking 
- We do the work 

Ready to get started now? <a href="http://www.reachingourgoal.org">Click!</a> 

Text ROG to 9192835123. Get clued in on amazing results and success tips. 

We are helping people like you do amazing things every day. 

Reaching Our Goal 
www.ReachingOurGoal.org 
'); 
0

vous pouvez faire comme suit,

$message = 'string <a href="http://Domain.com">!click</a>' 
0

Remplacement

http://www.reachingourgoal.org"Click! 

avec

<a href="http://www.reachingourgoal.org">Click!</a> 

-ce que le emploi.

+0

Un downvote, pourquoi? – Vishal

Questions connexes