Announcement

Collapse
No announcement yet.

FREE : SMTP Action Plugin

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • boku
    replied
    Can I get a confirmation that user name and password are indeed encrypted with Base64? As I am having trouble connecting to our exchange server. My settings are definitely correct...

    Leave a comment:


  • boku
    replied
    Thanks mate

    Tops :yes

    Leave a comment:


  • Dermot
    replied
    Those error constants are pretty descriptive, but here are some slightly longer ones from MS. http://msdn.microsoft.com/en-us/libr...EXCHG.10).aspx

    Leave a comment:


  • boku
    replied
    Hi Guys,

    Is there anywhere you know of that I can get a propper desciption of the error codes that get returned. So that the customer can see what e.g. CDO_E_UNCAUGHT_EXCEPTION = -2147220991 really means?

    Ta

    Leave a comment:


  • Dermot
    replied
    Originally posted by degger View Post
    plugins in linux?
    AMS is a Windows program so that means that all plugins are Windows.

    Leave a comment:


  • degger
    replied
    plugins in linux?

    Leave a comment:


  • Tomasin
    replied
    Not, this fail in all cases (in one page, in one dialogex, etc).

    tested with simple page and send message crash the application

    Leave a comment:


  • reteset
    replied
    Originally posted by Tomasin View Post
    On Windows 7 64 bits crash on send message
    can you explain a bit more , i hope you do not try again to send email on application exit
    or while a dialog around closing

    this is a Activex wrapper and parent thread must be alive untill it finishes its job and return back

    also if you send a mail when closing a dialog ,this means you are removing return address of action in memory ,in this case a application crash should be a expected result

    Leave a comment:


  • Tomasin
    replied
    On Windows 7 64 bits crash on send message

    Leave a comment:


  • Desrat
    replied
    Just like to say a big thank-you for this plugin, I had been toying with the PHP mail function which wasn't doing quite what I wanted and this offers a much more elegant soloution.

    Once again great work and many thanks..

    Leave a comment:


  • Dave Wilson
    replied
    Thanks for the help and advice

    I'll give this a try. I think my problem is that our firewall blocks these requests.
    I set up a Gmail account and tried this from home and it worked.
    I'm still curious about using this for a way to have many customers submit a request by e-mail.

    The only way I can see this working is to setup a dummy e-mail account and submit all requests from that account.

    It would have to include the password in the script, which concerns me.
    Has anyone found a better solution?

    Thanks again for the advice.

    Leave a comment:


  • reteset
    replied
    1: Goto Your Yahoo Mail Account And Enable POP3
    2: Follow : Options -> POP3 And Redirection
    3: Select : Web and POP Access
    4: Press : Save Button
    5: Add : Following Settings To Your Application

    Code:
    tblServerProperties = {};
    tblServerProperties.Server = "smtp.mail.yahoo.com";
    tblServerProperties.ServerPort = 465;
    tblServerProperties.UseSSL = true;
    
    tblServerProperties.Authenticated = true;
    tblServerProperties.UserName = "[email protected]";   
    tblServerProperties.PassWord = "********";
    6: Do Not Forget To Set Your Localized Email Address For UserName Field (E.G :[email protected] )
    7: Press: Send SMTP Mail Button
    8: Enjoy

    Leave a comment:


  • Dave Wilson
    replied
    how does this work for multiple users?

    I have downloaded the plugin in hopes that it woild solve a problem that I have been working on for over a month.
    I can send an e-mail using the File.OpenEmail command. When this works it works well.
    But it only works with e-mail programs such as Outlook and Lotus Notes.
    I'm trying to find a way for the user to fill in information and then attach to an e-mail. I tried editing the plugin to use my Yahoo.com e-mail address. but kept getting error
    -2147220973 FAILED TO CONNECT.

    I used the following:

    tblServerProperties = {};
    tblServerProperties.Server = "plus.smtp.mail.yahoo.com";
    tblServerProperties.ServerPort = 465;
    tblServerProperties.UseSSL = true; -- or false

    tblServerProperties.Authenticated = false; -- or false
    tblServerProperties.UserName = "[email protected]"; -- if Authenticated = false you do not need to define this table index
    tblServerProperties.PassWord = "my_password"; -- if Authenticated = false you do not need to define this table index



    Does anyone have any ideas on how to create a universal way to send an e-mail to the same address from many users?

    thanks for your advice and any help,

    Leave a comment:


  • drgfx
    replied
    Love this plugin, it works like a champ from my old Windows-XP!
    The mind is running wild thinking of all the things I can do with it...

    Thank You again!

    p.s.
    Soon as I make a little money from one of my apps, I'll be donating..

    Leave a comment:


  • reteset
    replied
    Originally posted by Lorne View Post
    reteset, remember to prefix those constants so they don't collide with other potential names already in use. Some of those are pretty common.

    If you haven't already, put them in a table, e.g. you could put them in the SMTP table along with the SendMail function.
    Yes you are right ,

    actually they had been defined in cdosys.tlh with CDO_E_ prefix
    i have cut them to make short constants , i think i did wrong

    i updated plugin and changed constants like below


    Code:
    [B]CDO_MAIL_SENT[/B] = 0; -- Succeed
    [B]CDO_E_UNCAUGHT_EXCEPTION[/B] = -2147220991;
    [B]CDO_E_NOT_AVAILABLE[/B] = -2147220984;
    [B]CDO_E_SMTP_SERVER_REQUIRED[/B] = -2147220982; 
    [B]CDO_E_RECIPIENT_MISSING [/B]= -2147220980;
    [B]CDO_E_FROM_MISSING[/B] = -2147220979;
    [B]CDO_E_SMTP_SEND_FAILED[/B] = -2147220975;
    [B]CDO_E_CONNECTION_DROPPED[/B] = -2147220974;
    [B]CDO_E_FAILED_TO_CONNECT[/B] = -2147220973;
    [B]CDO_E_AUTHENTICATION_FAILURE[/B] = -2147220971;
    [B]CDO_E_HTTP_NOT_FOUND[/B] = -2147220968;
    [B]CDO_E_HTTP_FORBIDDEN[/B] = -2147220967;
    [B]CDO_E_HTTP_FAILED [/B]= -2147220966;
    [B]CDO_E_UNSAFE_OPERATION[/B] = -2147220963;
    [B]CDO_E_PROP_NOT_FOUND[/B] = -2147220962; 
    [B]CDO_E_INVALID_SEND_OPTION[/B] = -2147220960;
    [B]CDO_E_BAD_DATA[/B] = -2147220951;
    [B]CDO_E_BAD_SENDER[/B] = -2147220941;
    you can download new version from here

    Thanks,

    Leave a comment:

Working...
X