Giter Site home page Giter Site logo

sendgrid-swift's Issues

Xcode 8 GM Swift 2.3 Compilation errors

When use Xcode 8 GM Swift 2.3, I am getting below 3 errors but I can correct 2 error myself. I request your advise on this.

pod entry
pod 'SendGrid', :git => 'https://github.com/scottkawai/sendgrid-swift.git'

Error
.../Pods/SendGrid/Sources/Classes/APIV3.swift:73:49: Value of optional type 'String?' not unwrapped; did you mean to use '!' or '?'?

.../Pods/SendGrid/Sources/Classes/APIV3.swift:45:99: '.dynamicType' is deprecated. Use 'type(of: ...)' instead

.../Pods/SendGrid/Sources/Classes/APIV3.swift:73:17: Expected 'let' in conditional

Use of older version of AFnetworking

I saw that you are using an older version of AFNetworking. Is there any particular reason for that? It will not allow us to update it for our purposes because you are using an older version.

400 bad request trying to use Dynamic Transactional Templates

Sendgrid has a (new-ish?) feature for using handlebar templates for transactional emails via the v3 send API - https://sendgrid.api-docs.io/v3.0/mail-send/v3-mail-send#handlebars

This library already supports a templateId parameter, but the docs here seem to suggest that's for legacy style templates? Links from docs here to Sendgrid's Template Engine suggest this is a deprecated feature.

When I attempt to send an email with a templateId of a dynamic template, i get a 400 response but no error message. These template IDs seem to start with d-.

Perhaps this library just needs to also support sending along a dynamic_template_data dictionary? Happy to try this myself, but figured I'd open an issue in case others have run into this / are working on it / have more context than me / etc.

I'm also a little unsure about Content for dynamic templates. Sendgrid docs suggest its not required when using dynamic templates. That would make sense to me - the template itself provides most of the "content", while the dynamic aspects for personalization come in the dynamic_template_data payload.

It does look like there was a PR for this that was opened and closed same day https://github.com/scottkawai/sendgrid-swift/pull/15/files

Authentication error

Could not make an HTTP request as there was no Authentication configured on Session. Please set the authentication property before calling send on Session.

in ViewDidLoad

Session.shared.authentication = Authentication.apiKey("API")

let personalization = Personalization(recipients: "[email protected]") let plainText = Content(contentType: ContentType.plainText, value: "Hello World") let htmlText = Content(contentType: ContentType.htmlText, value: "<h1>Hello World</h1>") let email = Email( personalizations: [personalization], from: "[email protected]", content: [plainText, htmlText], subject: "Hello World" ) do { try Session.shared.send(request: email) } catch { print(error) }

Linux Ubuntu 16 Compile Error

Got an error compiling on official swift docker container via Ubuntu 16 and Swift 4.0.3:

Compile Swift Module 'SendGrid' (81 sources)
/root/DavisRealEstate/.build/checkouts/sendgrid-swift.git--6696960893670408330/Sources/SendGrid/Structs/EncodingStrategy.swift:47:36: error: type 'JSONEncoder.DataEncodingStrategy' has no member 'base64Encode'
public static let base64 = JSONEncoder.DataEncodingStrategy.base64Encode
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~
/root/DavisRealEstate/.build/checkouts/sendgrid-swift.git--6696960893670408330/Sources/SendGrid/Structs/DecodingStrategy.swift:48:36: error: type 'JSONDecoder.DataDecodingStrategy' has no member 'base64Decode'
public static let base64 = JSONDecoder.DataDecodingStrategy.base64Decode

Maybe related to this issue: swagger-api/swagger-codegen#6483

Getting error like Bad username/ password

Hi,
While im using Sendgrid - swift, i'm getting error on Ip Pool, so i commented that code, and i try to test app on simulator and iphone, then i'm getting Bad username/password.

Same credentials i used for Android app, those are working, where as come to Sendgrid- Swift, im getting these errors, so please give an assist on sendgrid-swift, it would be more help for me.

Support for Linux

Does anyone have a fork of this library that supports Linux?

It doesn't seem like massive changes are needed for it to work.

sendAt Error

I am getting the below error when trying to use sendAt:

APIResponse(errors: [SendGrid.Exception.APIMessage(message: "Invalid type. Expected: integer, given: number.", field: Optional("send_at"), help: Optional("http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#message.send_at"))], _httpResponse: Optional(<NSHTTPURLResponse: 0x283415c20> { URL: https://api.sendgrid.com/v3/mail/send } { Status Code: 400, Headers {
    "Access-Control-Allow-Headers" =     (
        "Authorization, Content-Type, On-behalf-of, x-sg-elas-acl"
    );
    "Access-Control-Allow-Methods" =     (
        POST
    );
    "Access-Control-Allow-Origin" =     (
        "https://sendgrid.api-docs.io"
    );
    "Access-Control-Max-Age" =     (
        600
    );
    Connection =     (
        "keep-alive"
    );
    "Content-Length" =     (
        184
    );
    "Content-Type" =     (
        "application/json"
    );
    Date =     (
        "Tue, 14 Jan 2020 20:43:30 GMT"
    );
    Server =     (
        nginx
    );
    "X-No-CORS-Reason" =     (
        "https://sendgrid.com/docs/Classroom/Basics/API/cors.html"
    );
} }))

The code I am using is as follows:

let personalization = Personalization(recipients: recipientEmail)
        let plainText = Content(contentType: .plainText, value: "Test Email")
        let htmlText = Content(contentType: .htmlText, value: "<h1>Test Email</h1>")
        let email = Email(personalizations: [personalization],
                          from: fromEmail,
                          content: [plainText, htmlText],
                          subject: "Test Email"
        )

        email.parameters!.sendAt = Date(timeIntervalSinceNow: 24 * 60 * 60)
        
        do {
            try Session.shared.send(request: email) { (result) in
                switch result {
                    case .success(let response):
                        print("Success: ", response.statusCode)
                    case .failure(let err):
                        print("Error: ", err)
                    }
            }
        } catch {
            print(error)
        }

Plain text

I am using setTextBody to send plain text message. All line breaks are being converted to spaces. I am getting my text from a UITextView.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.