Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author Thomas Townsend

    (@smb-dev)

    Can you be more specific on the enhancement you are suggesting ?

    I see that you submitted this on Bitbcucket…Please change this to Enhancement as it’s NOT a BUG….and provide more details of what you desire.

    Thanks

    Thread Starter Ram

    (@sriram275)

    Thanks for quick reply..
    Present the emails which are going to admin email which after user submits application are text/plain emails so is there a chance of text/html because we need to change the email design..one example is if user upload any file you are uploading that file to media and preparing URL that is fine. And when in email this is displaying as a URL instead of any anchor tag to download directly from mail like <a href="mediaurl">Download CV</a>

    Hope this information will help us.

    Plugin Author Thomas Townsend

    (@smb-dev)

    The email is currently NOT html. We may update this in the future…when we add Resumes as attachments vs. DL Link.

    What you can do is limit the data that goes out in the email.

    App Form Settings
    – Field Label/Type
    Block this field from application emails? (Check this Box)

    Thread Starter Ram

    (@sriram275)

    Thank you.
    I got the file and I have changed to html and managed fields from App Form settings.

    Plugin Author Thomas Townsend

    (@smb-dev)

    If you don’t mind sharing with others, what did you change/mod to html format ? Thanks

    Thread Starter Ram

    (@sriram275)

    in frontend-application.php file in plugin..we changed few lines like instead of Content-type: text/plain; to Content-type: text/html; and we need to add filter to set html content type.

    add_filter( ‘wp_mail_content_type’, ‘set_html_content_type’ );
    wp_mail( $to, $subject, $msg, $header );
    remove_filter( ‘wp_mail_content_type’, ‘set_html_content_type’ );

    Hope it helps some one.

    Plugin Author Thomas Townsend

    (@smb-dev)

    I tried that out and it’s problematic...

    The Email you get on a regular email application like GMAIL or OUTLOOK etc
    ends up getting an attachment called (noname.txt)

    Yep it’s now formatted text with all the html (hyperlinks) stripped out because text has no formatting.

    Now the Mobile version doesn’t look any different than the way it was previously, the formatting does not change so I don’t see the advantage in doing this? In fact, it will end up being a huge disadvantage as you cant click the links to D/L the resume or review the Job App…

    The only change we want to make at present is to mod the DL link and provide a direct attachment instead. Primarily due to security when we change the CV Directory….

    Plugin Author Thomas Townsend

    (@smb-dev)

    Consider this resolved – Thread CLOSED

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Email Template Design to admin after user submit form’ is closed to new replies.