Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 15 of 15
  1. #1
    Join Date
    Apr 2009
    Posts
    48

    InfinityScape - Php Mailer


    Hey Indigorose, recently i came across a problem, i was unsure how to send a email from AMS, i tried various scripts and none of them seemed to work for me so i decided to have a go at making my own and php mailer was born, this handy little script allows you to send messages in 3 diffrent ways, these include;

    The API

    the first way you can send messages is through the scripts api, to do this you simply head on to over to the send.php where your script is located and in the address bar type;[/COLOR]YOURDOMAIN.CO.UK/send.php[COLOR="yellowgreen"]?to=TO&subject=SUBJECT&message=MESSAGE

    The User Interface


    the second way is through the user interface which is default way when you install Php Mailer, to do this simply point your browser to the place you installed Php Mailer for example; mail.YOURDOMAIN.co.uk then simply fill in the form and hit send.

    Through Your Software

    the final way is through your own software, to do this all you need to do is this;

    to = "somebody@somecompany.co.uk"
    subject = "YOUR SUBJECT"
    message = "YOUR MESSAGE"

    HTTP.Submit("http://mail.YOURDOMAIN.co.uk/send.php", { action="Submit", to=to, subject=subject, message=message }, SUBMITWEB_POST);
    if you want to collect your information from input boxes then it will look more like this;

    to = Input.GetText("to");
    subject = Input.GetText("subject");
    message = Input.GetText("message");

    HTTP.Submit("http://mail.YOURDOMAIN.co.uk/send.php", { action="Submit", to=to, subject=subject, message=message }, SUBMITWEB_POST);
    or you can just wrap the variables directly in quotes

    HTTP.Submit("http://mail.YOURDOMAIN.co.uk/send.php", { action="Submit", to="to", subject="subject", message="message" }, SUBMITWEB_POST);
    Sending The Email

    after you have sent the email if was sucessful then you will be greeted with a page such as the following;


    this will show you if the message send, and information about the message you sent, if the message failed to send then depending on the reason you will be notified

    Invalid Email Address - the email address entered is invalid
    Message Failed To Send, Please Try Again - no fields were filled in
    Setting Up Php Mailer

    in send.php you can change various settings, such as the following;

    $to = $_REQUEST['to'] ;
    $from = "noreply@infinityscape.co.uk" ;
    $subject = $_REQUEST['subject'] ;
    $message = $_REQUEST['message'] ;
    $messagebreak = wordwrap($message, 55, "<br />", true);
    Downloading Php Mailer

    ok heres the good bit, the download, Php Mailer is FREE and you can grab your copy here;

    Download Now
    Price: FREE | Version: 1.0.0.0 | Filesize: 19.46KB
    Please leave me a comment and let me know what you think,

    thanks,

    InfinityScape Team
    Last edited by drummernath; 10-26-2009 at 09:12 AM.

  2. #2
    Join Date
    Apr 2009
    Posts
    48
    Online Demo
    Online Demo Of Php Mailer
    InfinityScape Team

  3. #3
    Join Date
    Jul 2007
    Posts
    1,512
    Looks nice Well done, told you php is easyer then you thought.

  4. #4
    Join Date
    Apr 2009
    Posts
    48

    Php Mailer 1.1.0.0

    • cleaned up the files in to directorys
    • added options when message created
    • message is now viewable through lightbox rather than in the page
    • fixed minor bugs
    Download Now
    Price: FREE | Version: 1.1.0.0 | Filesize: 64.47KB

  5. #5
    Join Date
    Apr 2009
    Posts
    48

    Php Mailer 1.2.0.0

    • fixed more bugs
    • added a new desktop client
    Desktop Client



    Download Now
    Price: FREE | Version: 1.2.0.0 | Filesize: 2.04MB
    Last edited by drummernath; 10-26-2009 at 11:12 PM.

  6. #6
    Join Date
    Apr 2009
    Posts
    48

    Php Mailer Desktop Client

    Download Now
    Price: FREE | Version: 0.5.0.0 | Filesize: 2.13MB
    Last edited by drummernath; 10-26-2009 at 11:26 PM.

  7. #7
    Join Date
    Jan 2001
    Location
    Anderson Island, WA, USA
    Posts
    2,863
    Going backwards in versions? (Oh, I see that it's "DESKTOP CLIENT").. Sorry -- but,
    version 0.5.0.0 is an exe which does not open fine.
    Last edited by jassing; 10-26-2009 at 11:50 PM. Reason: fixed my error in reading comprehension.


    (Click here to contact me)
    Providing Independent Professional Consulting Services for
    IndigoRose products, World Wide.
    Located in -8:00 (-7:00 DST) GMT Timezone (Western United States)

  8. #8
    Join Date
    Jul 2007
    Posts
    1,512
    Quote Originally Posted by jassing View Post
    Going backwards in versions? (Oh, I see that it's "DESKTOP CLIENT").. Sorry -- but,
    version 0.5.0.0 is an exe which does not open fine.
    Try downloading it again? opened ok for me

  9. #9
    Join Date
    Apr 2009
    Posts
    48
    Custom Solutions

    hey i have decided to make custom versions of php mailer to match your requirements, i will create them to the exact requirements for your comapny. email me or pm me for more information
    • no branding
    • custom style to match your companys image
    • secure email client in desktop and online versions
    • much more

    contact me if you are interested;

    InfinityScape Team

  10. #10
    Join Date
    Jul 2007
    Posts
    1,512
    Sorry but the php file i just remade for this is given to you for free and will also be oddered here with the call back functions for free also AMS is not a place to self do it for you work when people just need a push forward.

    PHPMailer Mini Will be free by me But the InfinitryScape will be in the branding.
    The app you showed me is the one you really need to do alot of work on now thats something you have worth to sell.

  11. #11
    Join Date
    Oct 2009
    Location
    Merton, United Kingdom
    Posts
    684
    Quote Originally Posted by rexzooly View Post
    Sorry but the php file i just remade for this is given to you for free and will also be oddered here with the call back functions for free also AMS is not a place to self do it for you work when people just need a push forward.

    PHPMailer Mini Will be free by me But the InfinitryScape will be in the branding.
    The app you showed me is the one you really need to do alot of work on now thats something you have worth to sell.
    Can you really sell a PHP mail() wrapper these days?

  12. #12
    Join Date
    Jul 2007
    Posts
    1,512
    Quote Originally Posted by Sakuya View Post
    Can you really sell a PHP mail() wrapper these days?
    If the company really wants be that lazy lol

  13. #13
    Join Date
    Apr 2009
    Posts
    48
    it was a idea, thats all nothing more and i didnt say i would charge people because i really love helping people out
    Last edited by drummernath; 10-29-2009 at 01:15 PM.

  14. #14
    Join Date
    Jul 2007
    Posts
    1,512
    Quote Originally Posted by drummernath View Post
    it was a idea, thats all nothing more and i didnt say i would charge people because i really love helping people out
    Ok, like i said your other idea as more future then a mailer.

  15. #15
    Join Date
    Aug 2007
    Location
    Leon, Mexico.
    Posts
    406

    Hi Again rexzooly...

    Nice to hear from you again...

    I see you are a busy person, now u are doing bussines inside the forums, that will add and issue to your interesting personality...

    Well i Wish you luck...

Posting Permissions

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