AAM Posted January 24, 2013 Share Posted January 24, 2013 How can i email the .txt file. Link to comment Share on other sites More sharing options...
PhoenixXL Posted January 24, 2013 Share Posted January 24, 2013 (edited) as an attachment,for sending through your gmail account see my signatureorelse search the forum for "SMTP Mailer that supports Attachments" by jos Edited January 24, 2013 by PhoenixXL My code: PredictText: Predict Text of an Edit Control Like Scite. Remote Gmail: Execute your Scripts through Gmail. StringRegExp:Share and learn RegExp.Run As System: A command line wrapper around PSEXEC.exe to execute your apps scripts as System (LSA). Database: An easier approach for _SQ_LITE beginners. MathsEx: A UDF for Fractions and LCM, GCF/HCF. FloatingText: An UDF for make your text floating. Clipboard Extendor: A clipboard monitoring tool. Custom ScrollBar: Scroll Bar made with GDI+, user can use bitmaps instead. RestrictEdit_SRE: Restrict text in an Edit Control through a Regular Expression. Link to comment Share on other sites More sharing options...
water Posted January 24, 2013 Share Posted January 24, 2013 Which mail program do you use (Outlook ...)? My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
Moderators JLogan3o13 Posted January 24, 2013 Moderators Share Posted January 24, 2013 How can i email the .txt file.I honestly don't think you could have provided less information if you tried. Please explain in detail what you are trying to accomplish, and with what email application. "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum! Link to comment Share on other sites More sharing options...
AAM Posted January 24, 2013 Author Share Posted January 24, 2013 i am using outlook programm. actually i want to send the .txt file to my email address. WinWaitActive("Notepad", "") Send("!s") WinWaitActive("Save As", "") Sleep (1000) ; Send the name we found was next in line Send("C:tempresultsabcd.text") Sleep(1000) Send("!s") By using the above script i can save my .txt file.now i don't know how to send this file to my email address Link to comment Share on other sites More sharing options...
Moderators JLogan3o13 Posted January 24, 2013 Moderators Share Posted January 24, 2013 When you say "send this file to my email address", do you mean email it to yourself as an attachment, or do you mean email the text file from your address to someone else? "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum! Link to comment Share on other sites More sharing options...
AAM Posted January 24, 2013 Author Share Posted January 24, 2013 yes email to me as an attachment. Link to comment Share on other sites More sharing options...
rudi Posted January 24, 2013 Share Posted January 24, 2013 Hi. iirc there is an UDF (User Defined Function) that allowes to send email with attachments. I personally use BLAT.EXE ( -> google). Use the function "FileInstall()" to get a local copy at a temporary location, then use BLAT to send your emails. Fast, reliable, just the "fileinstall()" isn't that nice Note: with _INetSmtpMail() some mail systems (including Exchange 2010) require the parameter $s_first = -1 to be set, for other mail systems this value is a show stopper. That's the main reason, why I personally use BLAT: it *ALWAYS* works as a charm. Regards, Rudi. Earth is flat, pigs can fly, and Nuclear Power is SAFE! Link to comment Share on other sites More sharing options...
water Posted January 24, 2013 Share Posted January 24, 2013 You could use my OutlookEX UDF (for download see my signature). There is a wrapper function _OL_Wrapper_SendMail for easy sending of a file. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
AAM Posted January 24, 2013 Author Share Posted January 24, 2013 Hi MVP. Is there any way to send an email with file???? Link to comment Share on other sites More sharing options...
EmptySpace Posted January 24, 2013 Share Posted January 24, 2013 If you want only to receive file no matter how then you could use ftp. Its only 4-10 lines of code and you can download .txt from ftp very fast. Link to comment Share on other sites More sharing options...
water Posted January 24, 2013 Share Posted January 24, 2013 Sure: #include <OutlookEx.au3> $oOL = _OL_Open() If @error <> 0 Then Exit MsgBox(16, "Test", "Error creating a connection to Outlook. @error = " & @error & ", @extended = " & @extended) $sTo = "recipients mail address" $sSubject = "Subject of the mail" $sBody = "Body text of the mail" $sAttachments = "C:\temp\results\abcd.text" _OL_Wrapper_SendMail($oOL, $sTo, "", "", $sSubject, $sBody, $sAttachments) If @error <> 0 Then MsgBox(16, "Test", "Error sending mail. @error = " & @error & ", @extended: " & @extended) _OL_Close($oOL) minimen456 1 My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
AAM Posted January 25, 2013 Author Share Posted January 25, 2013 Hi MVP .It doesn't seem to work for me? i got an error message that can't open #include <OutlookEx.au3> and also _ol_open ,_ol_wrapper_sendmail and _ol_close are undefined function.can u please help me with that? Link to comment Share on other sites More sharing options...
water Posted January 25, 2013 Share Posted January 25, 2013 Did you download OutlookEx.au3 from my signature and unpack the ZIP file to a location where SciTE can find the include? My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
AAM Posted January 25, 2013 Author Share Posted January 25, 2013 hi Mvp.Actually i realy do not know how to open ur signature?can u please help me? Link to comment Share on other sites More sharing options...
GMK Posted January 25, 2013 Share Posted January 25, 2013 Link to comment Share on other sites More sharing options...
water Posted January 25, 2013 Share Posted January 25, 2013 Click on the "Download" link in line "OutlookEX (2012-10-07 - Version 0.9.0.0 released) - - - - Wiki", then unpack the ZIP file.There is a readme file which explains what to do with the content of the ZIP file. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
water Posted January 25, 2013 Share Posted January 25, 2013 BTW: My name on the forum is "water", my title is "MVP". My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
AAM Posted January 25, 2013 Author Share Posted January 25, 2013 Hi Water.i downloded the zipped file and try to extract it but it says that there is no data in it. Link to comment Share on other sites More sharing options...
water Posted January 25, 2013 Share Posted January 25, 2013 Then your Firewall, AntiVirus software or whatever is blocking zip files. Can you download the UDF at home and put it on a USB stick? My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now