User Tag List

Page 1 of 2 1 2 LastLast
Results 1 to 10 of 13

Thread: E-Mail Object?

  1. #1
    Clickteam Clickteam
    LB's Avatar
    Join Date
    Jun 2007
    Location
    Richardson, Texas, North America
    Posts
    8,937
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)

    E-Mail Object?

    I heard that this object existed and did a search both here and on all the extension pages, but got no results. Is there an E-Mail object? And if so, where can I download it? Sorry if I'm being stupid, but I tried to look...
    Working as fast as I can on Fusion 3

  2. #2
    No Products Registered

    Join Date
    Mar 2007
    Location
    San Diego
    Posts
    280
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: E-Mail Object?

    Yes, there is an email object. It's in bonus pack 1, only in the developer version though. You can download bonus pack 1 over there ---->

  3. #3
    Clickteam Clickteam
    LB's Avatar
    Join Date
    Jun 2007
    Location
    Richardson, Texas, North America
    Posts
    8,937
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)

    Re: E-Mail Object?

    Only developer!? Bummer...
    Working as fast as I can on Fusion 3

  4. #4
    Clickteam Clickteam
    Jeff's Avatar
    Join Date
    Jun 2006
    Location
    Battle Ground Washington
    Posts
    11,825
    Mentioned
    8 Post(s)
    Tagged
    2 Thread(s)

    Re: E-Mail Object?

    You can use the vitalize plug in and open a link "mailto:whoever@there.com" and it will open an email form.

  5. #5
    Clickteam Clickteam
    LB's Avatar
    Join Date
    Jun 2007
    Location
    Richardson, Texas, North America
    Posts
    8,937
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)

    Re: E-Mail Object?

    But I want to do it in a way that the user never sees the address, so it's program sent, like web forms, and the support form on the CT site.
    Working as fast as I can on Fusion 3

  6. #6
    Clickteam Clickteam
    Jeff's Avatar
    Join Date
    Jun 2006
    Location
    Battle Ground Washington
    Posts
    11,825
    Mentioned
    8 Post(s)
    Tagged
    2 Thread(s)

    Re: E-Mail Object?

    Well then you could
    - upgrade to developer
    - Look up examples made with Moosock and try to do it
    - use a socket type object to communicate with a server running a script that does the email for you


  7. #7
    No Products Registered

    Join Date
    Jul 2006
    Location
    www.dingdongstudios.co.nr
    Posts
    505
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: E-Mail Object?

    Or you could look for an ActiveX to do the same thing

  8. #8
    No Products Registered

    Join Date
    Jun 2006
    Posts
    220
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: E-Mail Object?

    Or if you have some web space that supports PHP - upload a page called email.php with something like the following:

    PHP Code:
    <?php
    $message 
    $_GET["message"];
    $from $_GET["name"]; //email address of sender

    $email "your@email.com"//email address to send to
    $subject "Message subject";

    mail($email,$subject,"$message","From: $from");

    ?>
    Then use MooSock to connect to it:

    Connect to www.yoursite.com on port 80
    Send text line "GET /email.php?message=blahblah&from=email@addy.com HTTP/1.1"
    Send text line "Host: www.yoursite.com"
    Send text line ""

    Or something similar. That's the way I'd do it - there's no point upgrading to developer just for the email object, when it's possible to use alternatives. Unless there are other developer features you're interested in, and you have the money of course.

  9. #9
    Forum Moderator Fusion 2.5 DeveloperHTML5 Export ModuleiOS Export ModuleSWF Export Module
    DavidN's Avatar
    Join Date
    Jun 2006
    Location
    Boston, MA, USA
    Posts
    4,044
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: E-Mail Object?

    Is it really that simple to send emails from PHP? I'm almost accustomed to the way that it has a function to do absolutely everything in about one line now, but I remember reading about security issues with using the "mail" function (some servers refusing mail from it? I can't remember).

  10. #10
    Clicker Multimedia Fusion 2 DeveloperSWF Export Module

    Join Date
    Jun 2006
    Posts
    6,773
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)

    Re: E-Mail Object?

    An open PHP script like that could be very abusable by spammers.

Page 1 of 2 1 2 LastLast

Similar Threads

  1. e-mail object mfa
    By JuanFernando in forum Multimedia Fusion 2 - Technical Support
    Replies: 4
    Last Post: 25th May 2010, 08:30 PM
  2. E-mail object:: Sending HTML mail
    By Ham in forum Multimedia Fusion 2 - Technical Support
    Replies: 0
    Last Post: 4th March 2010, 11:51 AM
  3. How do I use the E-mail object?
    By Oreo in forum Multimedia Fusion 2 - Technical Support
    Replies: 9
    Last Post: 9th December 2009, 01:41 PM
  4. E-mail Object, can't delete a mail
    By Mario in forum Multimedia Fusion 2 - Technical Support
    Replies: 0
    Last Post: 2nd August 2009, 07:52 PM
  5. E-Mail Object
    By TotalProjects in forum Extension Development
    Replies: 6
    Last Post: 12th September 2008, 02:02 PM

Posting Permissions

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