Results 1 to 5 of 5

Thread: Meeting/call Customizations

  1. #1
    Join Date
    Jul 2009
    Posts
    17

    Default Meeting/call Customizations

    I want to change the way the accept/tentative/decline meeting is displayed in the inviting email so that instead of it looking like this:

    Accept:
    http://mydomain.com/..... (and the contact sees the entire url)

    It looks like this:

    Accept (here the contact just clicks on the accept hyperlink and thats it)

    My only question is where do I find the file that controls the layout of the meeting/call invites?

  2. #2
    Angel's Avatar
    Angel is offline Sugar Community Member
    Join Date
    Jul 2005
    Location
    Los Angeles
    Posts
    4,813

    Default Re: Meeting/call Customizations

    Take a look at <sugar>/include/language/en_us.notify_template.html
    Regards,

    Angel Magaņa
    Co-Author: Implementing SugarCRM 5.x (Packt Publishing -- Sept. 2010)
    Blog: http://cheleguanaco.blogspot.com.
    Twitter: @cheleguanaco.

    ________
    | Projects: |_____________________________________
    |
    | CandyWrapper (.NET Wrapper for SugarCRM SOAP API). Source now available on GitHub!
    | GoldMine to SugarCRM Express Conversion. Latest: 1.0.1.7 (Nov. 3, 2009)
    | CRM SkyDialer (Skype Integration). Latest: 1.0.2 (Feb. 17, 2010)
    | Round Robin Leads Assignment
    | Phone Number Formatter
    | CaseTwit (Twitter Integration)
    ______________________________________________

  3. #3
    Join Date
    Jul 2009
    Posts
    17

    Default Re: Meeting/call Customizations

    Thanks that helped. I am not too great at coding, but I tried something to the effect of:

    <a href="http://mydomain.com">Accept</a>

    However, it didnt work. The emails sent out are just plain text and I thought by placing html tags around the above portion would allow me to have it displayed differently. Has anyone done this?

  4. #4
    kuske's Avatar
    kuske is offline Sugar Community Member
    Join Date
    Oct 2007
    Location
    Germany
    Posts
    2,597

    Default Re: Meeting/call Customizations

    In data/SugarBean.php funvtion create_notification_email the notification emails are created. Here the mail is created as a plain text email.
    If you want to change the notification emails to html you must changge some lines in this module and than you have to do someformatting in the template :-)

    // $notify_mail->Body = from_html(trim($xtpl->text($template_name)));
    $notify_mail->ContentType="text/html";
    $notify_mail->Body = trim($xtpl->text($template_name));
    Last edited by kuske; 2009-12-17 at 09:18 AM.
    Harald Kuske
    Pre-Sales Engineer Central Europe

    SUGARCRM Deutschland GmbH
    Erika-Mann-Str. 53, 80636 Munich, Germany
    Email: hkuske@sugarcrm.com
    Home: http://www.sugarcrm.com


  5. #5
    Join Date
    Jul 2009
    Posts
    17

    Default Re: Meeting/call Customizations

    Worked like a charm. Thanks Kuske!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 1
    Last Post: 2007-09-15, 02:59 PM
  2. Creating a meeting from a call
    By stevec in forum Developer Help
    Replies: 0
    Last Post: 2007-02-15, 02:10 PM
  3. Can't add invitee to call or meeting
    By tenwall in forum Help
    Replies: 0
    Last Post: 2005-06-27, 07:20 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •