Announcement
Collapse
No announcement yet.
FREE : SMTP Action Plugin
Collapse
X
-
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...
-
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:
-
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:
-
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:
-
can you explain a bit more , i hope you do not try again to send email on application exitOriginally posted by Tomasin View PostOn Windows 7 64 bits crash on send message
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:
-
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:
-
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:
-
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
6: Do Not Forget To Set Your Localized Email Address For UserName Field (E.G :[email protected] )Code:tblServerProperties = {}; tblServerProperties.Server = "smtp.mail.yahoo.com"; tblServerProperties.ServerPort = 465; tblServerProperties.UseSSL = true; tblServerProperties.Authenticated = true; tblServerProperties.UserName = "[email protected]"; tblServerProperties.PassWord = "********";
7: Press: Send SMTP Mail Button
8: Enjoy
Leave a comment:
-
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:
-
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:
-
Yes you are right ,Originally posted by Lorne View Postreteset, 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.
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
you can download new version from hereCode:[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;
Thanks,
Leave a comment:

Leave a comment: