【问题标题】:adding url link in a function在函数中添加 url 链接
【发布时间】:2012-05-29 03:56:24
【问题描述】:

这可能是一个简单的解决方法,但我是新手。我有一些来自以前的开发人员的代码,我被要求编辑发送出去的电子邮件的文本。我尝试过使用常规的 href 标签,但这不起作用。在下面的示例中是否有添加 URL 的特定方法?这是“准备开始”行。点击应该是超链接的。谢谢!!

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 ='support@reachingourgoal.org';
        $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='junk@reachingourgoal.org,jon@mysportsdreams.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;
    }

【问题讨论】:

    标签: php hyperlink


    【解决方案1】:
     $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
    ');
    

    【讨论】:

      【解决方案2】:

      你可以像下面这样,

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

      【讨论】:

        【解决方案3】:

        替换

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

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

        完成这项工作。

        【讨论】:

          猜你喜欢
          • 2021-01-26
          • 2015-10-03
          • 1970-01-01
          • 1970-01-01
          • 1970-01-01
          • 1970-01-01
          • 1970-01-01
          • 1970-01-01
          • 1970-01-01
          相关资源
          最近更新 更多