Popular Post Ascer Posted February 12, 2018 Popular Post Posted February 12, 2018 (edited) 1. Description. Automate communication with Gmail API using oAuth 2.0 security. 2. Requirements. Google Gmail account. Finished Authorization process. Look here 3. Possibilities. ;======================================================================================================================== ; Date: 2018-02-12, 11:46 ; ; Bug Fixs: 2018-02-17, 7:31 -> Fixed problems with adding items to array and minor bugs. ; ; Description: UDF for using Gmail API interface. This UDF requires oAuth.au3 and Gmail account. ; ; Function(s): ; gmailUsersGetProfile() -> Information about your account. ; gmailUsersLabelsList() -> Get all available labels ids. ex. "INBOX", "UNREAD" ; gmailUsersLabelsGet() -> Get information about specific label id. ; gmailUsersMessagesBatchDelete() -> Delete many messages emails by id. ; gmailUsersMessagesBatchModify() -> Set status for many messages ex. "INBOX", "UNREAD" ; gmailUsersMessagesDelete() -> Totaly delete email from ur account. ; gmailUsersMessagesGet() -> Get all information about specific email. ; gmailUsersMessagesList() -> Get list of last ~100 emails. ; gmailUsersMessagesModify() -> Modify single message. ; gmailUsersMessagesTrash() -> Put email in trash. ; gmailUsersMessagesUntrash() -> Restore email from trash. ; gmailUsersMessagesSend() -> Send email to single or group recipients. ; gmailUsersMessagesAttachmentsGet() -> Download attachment by id. ; ; Author(s): Ascer ;======================================================================================================================== 4. Downloads. oAuth.au3 Gmail API.au3 5. Examples. Sending emails Edited February 17, 2018 by Ascer angrof, Danyfirex, argumentum and 3 others 3 3
Ascer Posted February 12, 2018 Author Posted February 12, 2018 (edited) Gmail API send email expandcollapse popup;======================================================================================================================= ; Date: 2018-02-12, 17:52 ; ; Description: Send email using API to single or group of receipients. ; ; Function(s): gmailUsersMessagesSend() -> example usage ; ; Param(s): $sClientId Your client_id from *json file ; $sClientSecret Your client_secret from *json file ; $sRefreshToken Refresh token received from oAuth2GetAccessToken()[2] ; $sYourGmailAdress You gmail email adress ; $aRecipient Receipients: can be single without array or sepatared by comma "email1,email2" ; $sSubject Message Subject. ; $sBody Message body in text ; $sBodyHtml Message body in Html ; $sAttachment Attachment: string or array | Put path to file ex. [@ScriptDir & "\test.png"] ;======================================================================================================================= #Include <Gmail API.au3> Local $sClientId = "167204758184-vpeues0uk6b0g4jrnv0ipq5fapoig2v8.apps.googleusercontent.com" Local $sClientSecret = "cWalvFr3WxiE6cjUkdmKEPo8" Local $sRefreshToken = "34wSsq5sdfcoH-Rl-dfldfLffqxq2fhdPL1K-sf" Local $sYourGmailAdress = "youremail@gmail.com" Local $aRecipient = ["friend1@gmail.com", "friend2@yahoo.com"] Local $sSubject = "Testing Gmail API with Autoit" Local $sBody = "Hello there. Just testing..." & @CRLF Local $sBodyHtml = '<meta charset="utf-8"><h2>AutoIt v3<br></h2>' Local $sAttachment = Default Local $aToken = oAuth2RefreshAccessToken($sRefreshToken, $sClientId, $sClientSecret) If Not IsArray($aToken) Then except("<none>", "Failed to get access token. Exiting..", 1) Exit EndIf $aToken = $aToken[0] Local $aRet = gmailUsersMessagesSend($aRecipient, $sSubject, $sBody & $sBodyHtml, $sYourGmailAdress, $aToken, "Bearer", Default, $sAttachment) If Not IsArray($aRet) Then except("<none>", "Failed to send an email.", 2) EndIf ConsoleWrite("Message Sent Sucessfully!" & @CRLF) ConsoleWrite("MessageId: " & $aRet[0] & @CRLF) ConsoleWrite("ThreadId: " & $aRet[0] & @CRLF) Local $aLabelsIds = $aRet[2] ConsoleWrite("Sent message labels_ids: " & @CRLF) For $sLabel = 0 To UBound($aLabelsIds) - 1 ConsoleWrite("Label: " & $aLabelsIds[$sLabel] & @CRLF) Next  Edited February 17, 2018 by Ascer coffeeturtle, GoogleDude and Parsix 1 2
mLipok Posted February 16, 2018 Posted February 16, 2018 (edited) please add this lines to each of your file:  #AutoIt3Wrapper_Run_AU3Check=Y #AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6 -w 7 and check what will happen when you try to use Au3Check by pressing CTRL+F5 in SciTe4AutoIt . ps. Currently there are still few bugs.... and warnings. Edited February 16, 2018 by mLipok Signature beginning:* Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules ** ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Code * for other useful stuff click the following button: Spoiler Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST API * ErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 *  My contribution to others projects or UDF based on  others projects: * _sql.au3 UDF  * POP3.au3 UDF *  RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF * SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane * Useful links: * Forum Rules * Forum etiquette * Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * Wiki: * Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX IE Related:  * How to use IE.au3  UDF with  AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskScheduler * IE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related: * How to get reference to PDF object embeded in IE * IE on Windows 11 * I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions * EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *I also encourage you to check awesome @trancexx code: * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuff * OnHungApp handler * Avoid "AutoIt Error" message box in unknown errors  * HTML editor * winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/ "Homo sum; humani nil a me alienum puto" - Publius Terentius Afer"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming"  , be   and    \\//_. Anticipating Errors :  "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty." Signature last update: 2023-04-24
Ascer Posted February 17, 2018 Author Posted February 17, 2018 @mLipok Thanks for verify this. It's my first time when i hear about #AutoitWrapper. This tool help me so much in next UDF. Bugs fixed, UDF updated. (CTRL + F5 show me nothing)
mLipok Posted February 18, 2018 Posted February 18, 2018 (edited) On 17.02.2018 at 7:55 AM, Ascer said: Bugs fixed, UDF updated. (CTRL + F5 show me nothing) But I get this:  Spoiler Quote >"C:\Program Files (x86)\AutoIt3\SciTE\..\AutoIt3.exe" "C:\Program Files (x86)\AutoIt3\SciTE\AutoIt3Wrapper\AutoIt3Wrapper.au3" /Prod /AU3check /in "C:\Users\user\Downloads\Gmail API.au3" +>23:41:53 Starting AutoIt3Wrapper v.17.224.935.0 SciTE v.3.7.3.0  Keyboard:00000415  OS:WIN_10/  CPU:X64 OS:X64  Environment(Language:0415)  CodePage:65001  utf8.auto.check:4 +>     SciTEDir => C:\Program Files (x86)\AutoIt3\SciTE  UserDir => C:\Users\user\AppData\Local\AutoIt v3\SciTE\AutoIt3Wrapper  SCITE_USERHOME => C:\Users\user\AppData\Local\AutoIt v3\SciTE >Running AU3Check (3.3.15.4)  params:-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6 -w 7  from:C:\Program Files (x86)\AutoIt3  input:C:\Users\user\Downloads\Gmail API.au3 "C:\Users\user\Downloads\oAuth.au3"(14,7) : warning: 'Local' specifier in global scope. Local $AUTHORIZATION_CODE ~~~~~~^ "C:\Users\user\Downloads\Gmail API.au3"(80,18) : warning: $bQuestion: declared, but not used in func.    Local $bQuestion    ~~~~~~~~~~~~~~~~^ "C:\Users\user\Downloads\Gmail API.au3"(214,18) : warning: $bQuestion: declared, but not used in func.    Local $bQuestion,    ~~~~~~~~~~~~~~~~^ "C:\Users\user\Downloads\Gmail API.au3"(339,41) : warning: $iUbound already declared/assigned       Local $iUbound = UBound($sAddLabelIds)       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ "C:\Users\user\Downloads\Gmail API.au3"(355,44) : warning: $iUbound already declared/assigned       Local $iUbound = UBound($sRemoveLabelIds)       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ "C:\Users\user\Downloads\Gmail API.au3"(487,17) : warning: 'Dim' deprecated as declaration. Prefer to use Local or Global.    Dim $aLabels[0]    ~~~~~~~~~~~~~~~^ "C:\Users\user\Downloads\Gmail API.au3"(503,27) : warning: $fQuestion: declared, but not used in func.    Local $aTable, $fQuestion    ~~~~~~~~~~~~~~~~~~~~~~~~~^ "C:\Users\user\Downloads\Gmail API.au3"(575,16) : warning: 'Dim' deprecated as declaration. Prefer to use Local or Global.    Dim $aInbox[0]    ~~~~~~~~~~~~~~^ "C:\Users\user\Downloads\Gmail API.au3"(582,32) : warning: 'Dim' deprecated as declaration. Prefer to use Local or Global.             Dim $aSingleMessageArray[0]             ~~~~~~~~~~~~~~~~~~~~~~~~~~~^ "C:\Users\user\Downloads\Gmail API.au3"(576,18) : warning: $bQuestion: declared, but not used in func.    Local $bQuestion    ~~~~~~~~~~~~~~~~^ "C:\Users\user\Downloads\Gmail API.au3"(652,44) : warning: $iUbound already declared/assigned       Local $iUbound = UBound($sRemoveLabelIds)       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ "C:\Users\user\Downloads\Gmail API.au3"(713,17) : warning: 'Dim' deprecated as declaration. Prefer to use Local or Global.    Dim $aLabels[0]    ~~~~~~~~~~~~~~~^ "C:\Users\user\Downloads\Gmail API.au3"(763,17) : warning: 'Dim' deprecated as declaration. Prefer to use Local or Global.    Dim $aLabels[0]    ~~~~~~~~~~~~~~~^ "C:\Users\user\Downloads\Gmail API.au3"(880,17) : warning: 'Dim' deprecated as declaration. Prefer to use Local or Global.    Dim $aLabels[0]    ~~~~~~~~~~~~~~~^ "C:\Users\user\Downloads\Gmail API.au3"(890,27) : warning: $fQuestion: declared, but not used in func.    Local $aTable, $fQuestion    ~~~~~~~~~~~~~~~~~~~~~~~~~^ "C:\Users\user\Downloads\Gmail API.au3"(940,27) : warning: $fQuestion: declared, but not used in func.    Local $aTable, $fQuestion    ~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Users\user\Downloads\Gmail API.au3 - 0 error(s), 16 warning(s) ->23:41:53 AU3Check ended. Press F4 to jump to next error.rc:1 +>23:41:53 AutoIt3Wrapper Finished. >Exit code: 0   Time: 1.045    Edited February 18, 2018 by mLipok Signature beginning:* Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules ** ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Code * for other useful stuff click the following button: Spoiler Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST API * ErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 *  My contribution to others projects or UDF based on  others projects: * _sql.au3 UDF  * POP3.au3 UDF *  RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF * SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane * Useful links: * Forum Rules * Forum etiquette * Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * Wiki: * Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX IE Related:  * How to use IE.au3  UDF with  AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskScheduler * IE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related: * How to get reference to PDF object embeded in IE * IE on Windows 11 * I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions * EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *I also encourage you to check awesome @trancexx code: * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuff * OnHungApp handler * Avoid "AutoIt Error" message box in unknown errors  * HTML editor * winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/ "Homo sum; humani nil a me alienum puto" - Publius Terentius Afer"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming"  , be   and    \\//_. Anticipating Errors :  "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty." Signature last update: 2023-04-24
Ascer Posted February 19, 2018 Author Posted February 19, 2018 Its' because you use a new Scite. I don't see this warrings on version 3.5.4
mLipok Posted March 17, 2018 Posted March 17, 2018 On 19.02.2018 at 8:06 AM, Ascer said: Its' because you use a new Scite. I don't see this warrings on version 3.5.4 No, no, it means that you still have bad habits and you do things in the wrong way. Try a little more to fight with this. Signature beginning:* Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules ** ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Code * for other useful stuff click the following button: Spoiler Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST API * ErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 *  My contribution to others projects or UDF based on  others projects: * _sql.au3 UDF  * POP3.au3 UDF *  RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF * SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane * Useful links: * Forum Rules * Forum etiquette * Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * Wiki: * Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX IE Related:  * How to use IE.au3  UDF with  AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskScheduler * IE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related: * How to get reference to PDF object embeded in IE * IE on Windows 11 * I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions * EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *I also encourage you to check awesome @trancexx code: * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuff * OnHungApp handler * Avoid "AutoIt Error" message box in unknown errors  * HTML editor * winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/ "Homo sum; humani nil a me alienum puto" - Publius Terentius Afer"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming"  , be   and    \\//_. Anticipating Errors :  "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty." Signature last update: 2023-04-24
argumentum Posted October 11, 2018 Posted October 11, 2018 On 2/18/2018 at 5:42 PM, mLipok said: "C:\Users\user\Downloads\Gmail API.au3"(80,18) : warning: $bQuestion: declared, but not used in func.    Local $bQuestion I looked at the code and the variable is used. How can I fix this ? Thanks @mLipok. Follow the link to my code contribution ( and other things too ). FAQ - Please Read Before Posting.
argumentum Posted October 11, 2018 Posted October 11, 2018 (edited) On 2/12/2018 at 12:01 PM, Ascer said: Gmail API send email Could you show how to use CC and BCC ?. Also attachment. Thanks @Ascer. Edited October 11, 2018 by argumentum saw the attachment help Follow the link to my code contribution ( and other things too ). FAQ - Please Read Before Posting.
BrewManNH Posted October 11, 2018 Posted October 11, 2018 42 minutes ago, argumentum said: I looked at the code and the variable is used. How can I fix this ? It's not used correctly, the Ternary operator doesn't return a value, so assigning it to one is pointless. Remove all variable references used with the Ternary operator anywhere you see something like this: $bQuestion = IsArray($aEmailAdress) ? _TableInsert($aTable, $aEmailAdress[0]) : _TableInsert($aTable, "") Also remove the variable declaration because $bQuestion isn't used anywhere that it is needed.  Second, don't declare variables conditionally like this: If IsArray($sRemoveLabelIds) Then Local $iUbound = UBound($sRemoveLabelIds) Declare the variable, then assign something to it inside the If statements. Don't declare it twice depending on whether the If statement is valid argumentum 1 If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator
argumentum Posted October 11, 2018 Posted October 11, 2018 52 minutes ago, argumentum said: Could you show how to use CC and BCC ?. ok, got it. Use a string, like: Local $sRecipient = "personTo@some.com" & @LF & "Bcc: personBcc@another.com" and that is it =) Follow the link to my code contribution ( and other things too ). FAQ - Please Read Before Posting.
argumentum Posted October 11, 2018 Posted October 11, 2018 (edited) 19 minutes ago, BrewManNH said: Also remove the variable declaration because $bQuestion isn't used anywhere that it is needed. error: Statement cannot be just an expression. I have no idea why the ternary is needed or how to go about it =/ Would you recode that line ?, thanks @BrewManNH. Use if/then/else Edited October 11, 2018 by argumentum answered my silly question Follow the link to my code contribution ( and other things too ). FAQ - Please Read Before Posting.
mBild Posted October 12, 2018 Posted October 12, 2018 Great work... However, all line breaks are missing in the text body... What am I doing wrong?
Developers Jos Posted October 12, 2018 Developers Posted October 12, 2018 32 minutes ago, mBild said: Great work... However, all line breaks are missing in the text body... What am I doing wrong? Welcome and nice to see you think we are clairvoyant. Seriously, post what you are trying so we can see what you are doing. Might have something to do with an HTMLbody but that is guessing. Jos SciTE4AutoIt3 Full installer Download page  - Beta files    Read before posting   How to post scriptsource   Forum etiquette Forum Rules  Live for the present, Dream of the future, Learn from the past.Â
mBild Posted October 12, 2018 Posted October 12, 2018 21 minutes ago, Jos said: Welcome and nice to see you think we are clairvoyant. Seriously, post what you are trying so we can see what you are doing. Might have something to do with an HTMLbody but that is guessing. Jos Many thanks for your quick reply and sorry, for being unclear. I am using FileRead to get text (with linebreaks) from a .txt file (ANSI) to a variable. The text should then be automatically emailed using your UDF. When I output the variable in the console all works fine. If I add it as text body ($sBody) and email it, the text is all correct, however all line and paragraph breaks are missing? Am I missing something?         Many thanks for your support...Â
Developers Jos Posted October 12, 2018 Developers Posted October 12, 2018 Still don't see any script so post what you have that isn't working. SciTE4AutoIt3 Full installer Download page  - Beta files    Read before posting   How to post scriptsource   Forum etiquette Forum Rules  Live for the present, Dream of the future, Learn from the past.Â
mBild Posted October 12, 2018 Posted October 12, 2018 $hFile = Fileopen($a_FileList[1][0], $FO_ANSI) $FileContent = FileRead($hFile) FileClose($hFile)  ConsoleWrite($FileContent) --> All correct with line and paragraph breaks   ; Function(s):      gmailUsersMessagesSend() -> example usage Local $sBody = $FileContent & @CRLF Local $sBodyHtml = Default Local $sAttachment = Default ---> Email is send without line and paragraph breaks   Many thanks for your help!!! Â
mLipok Posted October 12, 2018 Posted October 12, 2018 just guessing... Do you send $sBody or $sBodyHtml ?  Signature beginning:* Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules ** ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Code * for other useful stuff click the following button: Spoiler Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST API * ErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 *  My contribution to others projects or UDF based on  others projects: * _sql.au3 UDF  * POP3.au3 UDF *  RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF * SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane * Useful links: * Forum Rules * Forum etiquette * Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * Wiki: * Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX IE Related:  * How to use IE.au3  UDF with  AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskScheduler * IE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related: * How to get reference to PDF object embeded in IE * IE on Windows 11 * I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions * EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *I also encourage you to check awesome @trancexx code: * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuff * OnHungApp handler * Avoid "AutoIt Error" message box in unknown errors  * HTML editor * winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/ "Homo sum; humani nil a me alienum puto" - Publius Terentius Afer"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming"  , be   and    \\//_. Anticipating Errors :  "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty." Signature last update: 2023-04-24
mBild Posted October 12, 2018 Posted October 12, 2018 Thanks for the reply. I send $sBody, but also with $sBodyHtml there are no line and paragraph breaks in the email body?  Maybe I am missing something?
Developers Jos Posted October 12, 2018 Developers Posted October 12, 2018 (edited) Well, I am still not seeing any runable script so have no idea as I can't test unless I am going to spend time to code it myself. Jos Edited October 12, 2018 by Jos SciTE4AutoIt3 Full installer Download page  - Beta files    Read before posting   How to post scriptsource   Forum etiquette Forum Rules  Live for the present, Dream of the future, Learn from the past.Â
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